| Administrator | 
		As we can use Xmx and Xms for OPP, then yes. These parameters specifies the size of memory allocation pools for a Java Virtual Machine
 
 So , if you use a GC print argument , it should print the GC logs.
 
 -XX:+PrintGC (or the alias -verbose:gc)
 
 As you update the FND_CP_SERVICES for increasing the heap of OPP, update the same queue with
 -> "-XX:+PrintGC"
 
 You can also try to use -XX:+PrintGCDetails for detailed GC logging.
 
 But this is not tested and it is not documented.
 The risk is yours.
 |