Skip to content

Commit 5089583

Browse files
committed
8356259: Lift basic -Xlog:jit* logging to "info" level
Reviewed-by: kvn
1 parent 21f01e0 commit 5089583

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hotspot/share/compiler/compileTask.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,15 +471,15 @@ void CompileTask::print_inlining_inner_message(outputStream* st, InliningResult
471471
}
472472

473473
void CompileTask::print_ul(const char* msg){
474-
LogTarget(Debug, jit, compilation) lt;
474+
LogTarget(Info, jit, compilation) lt;
475475
if (lt.is_enabled()) {
476476
LogStream ls(lt);
477477
print(&ls, msg, /* short form */ true, /* cr */ true);
478478
}
479479
}
480480

481481
void CompileTask::print_ul(const nmethod* nm, const char* msg) {
482-
LogTarget(Debug, jit, compilation) lt;
482+
LogTarget(Info, jit, compilation) lt;
483483
if (lt.is_enabled()) {
484484
LogStream ls(lt);
485485
print_impl(&ls, nm->method(), nm->compile_id(),

0 commit comments

Comments
 (0)