src/share/vm/runtime/arguments.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/runtime/arguments.cpp	Thu Jan 28 14:14:19 2016
--- new/src/share/vm/runtime/arguments.cpp	Thu Jan 28 14:14:18 2016

*** 399,408 **** --- 399,410 ---- { "CreateMinidumpOnCrash", "CreateCoredumpOnCrash" }, { NULL, NULL} }; static AliasedLoggingFlag const aliased_logging_flags[] = { + { "TraceClassLoading", LogLevel::Info, true, LogTag::_classload }, + { "TraceClassUnloading", LogLevel::Info, true, LogTag::_classunload }, { "TraceClassResolution", LogLevel::Info, true, LogTag::_classresolve }, { "TraceExceptions", LogLevel::Info, true, LogTag::_exceptions }, { "TraceMonitorInflation", LogLevel::Debug, true, LogTag::_monitorinflation }, { NULL, LogLevel::Off, false, LogTag::__NO_TAG } };
*** 2650,2665 **** --- 2652,2663 ---- } // -verbose:[class/gc/jni] if (match_option(option, "-verbose", &tail)) { if (!strcmp(tail, ":class") || !strcmp(tail, "")) { if (FLAG_SET_CMDLINE(bool, TraceClassLoading, true) != Flag::SUCCESS) { ! return JNI_EINVAL; } if (FLAG_SET_CMDLINE(bool, TraceClassUnloading, true) != Flag::SUCCESS) { return JNI_EINVAL; } + LogConfiguration::configure_stdout(LogLevel::Info, true, LOG_TAGS(classload)); ! LogConfiguration::configure_stdout(LogLevel::Info, true, LOG_TAGS(classunload)); } else if (!strcmp(tail, ":gc")) { LogConfiguration::configure_stdout(LogLevel::Info, true, LOG_TAGS(gc)); } else if (!strcmp(tail, ":jni")) { if (FLAG_SET_CMDLINE(bool, PrintJNIResolving, true) != Flag::SUCCESS) { return JNI_EINVAL;

src/share/vm/runtime/arguments.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File