8151560: Safepoint logging has mismatch between command line level and printed level
Summary: Corrected mistaken "debug" level to "trace"
Reviewed-by: hseigel, jiangli, dholmes
--- a/hotspot/src/share/vm/runtime/safepoint.cpp Thu Mar 17 11:15:44 2016 +0100
+++ b/hotspot/src/share/vm/runtime/safepoint.cpp Thu Mar 17 12:02:24 2016 -0400
@@ -222,7 +222,7 @@
}
if (log_is_enabled(Trace, safepoint)) {
ResourceMark rm;
- cur_state->print_on(LogHandle(safepoint)::debug_stream());
+ cur_state->print_on(LogHandle(safepoint)::trace_stream());
}
}
}