The change for JDK-8145092 removed several flags, including PrintGC, PrintGCDetails and -Xloggc. These three flags should be added back as deprecated flags. They should be mapped to the new logging configurations as follows:
Old: -XX:+PrintGC
New: -Xlog:gc
Old: -XX:+PrintGCDetails
New: -Xlog:gc*
Old: -Xloggc:<filename>
New: -Xlog:gc:<filename>
Old: -XX:+PrintGC
New: -Xlog:gc
Old: -XX:+PrintGCDetails
New: -Xlog:gc*
Old: -Xloggc:<filename>
New: -Xlog:gc:<filename>
- relates to
-
JDK-8145092 Use Unified Logging for the GC logging
- Resolved
-
JDK-8059805 JEP 271: Unified GC Logging
- Closed