Is using verbose:gc and other print GC options an overhead to running java.

Is using verbose:gc and other print GC options an overhead to running java.Questions have been asked that it might cause some performance issues because of the logging.
[182 byte] By [richard_stretcha] at [2007-11-27 7:52:11]
# 1

In my experience, only heavier output options such as

-XX:+PrintTenuringDistribution

-XX:+PrintHeapUsageOverTime

-XX:+PrintHeapAtGC

-XX:+PrintClassHistogram

have a negative impact on production systems due to increased verbosity. I usually use

-XX:+PrintGC -XX:+PrintGCDetails -XX:+PrintGCTimestamps -Xloggc:filename

in production with no impact and this way I can debug issues post-mortem.

Finoa at 2007-7-12 19:33:25 > top of Java-index,Java HotSpot Virtual Machine,Specifications...