From 95129b2a5e4b471695b9b19701090faea0c2b0ff Mon Sep 17 00:00:00 2001 From: Rachel Protacio Date: Thu, 17 Mar 2016 12:02:24 -0400 Subject: [PATCH] 8151560: Safepoint logging has mismatch between command line level and printed level Corrected mistaken "debug" level to "trace" Reviewed-by: hseigel, jiangli, dholmes --- hotspot/src/share/vm/runtime/safepoint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotspot/src/share/vm/runtime/safepoint.cpp b/hotspot/src/share/vm/runtime/safepoint.cpp index 4ab080df3ed..0b546eda3e3 100644 --- a/hotspot/src/share/vm/runtime/safepoint.cpp +++ b/hotspot/src/share/vm/runtime/safepoint.cpp @@ -222,7 +222,7 @@ void SafepointSynchronize::begin() { } if (log_is_enabled(Trace, safepoint)) { ResourceMark rm; - cur_state->print_on(LogHandle(safepoint)::debug_stream()); + cur_state->print_on(LogHandle(safepoint)::trace_stream()); } } }