mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 06:14:49 +02:00
8152632: Rename LogHandle(...) to Log(...)
Reviewed-by: brutisso, mlarsson, rprotacio
This commit is contained in:
parent
ff771a6686
commit
15c4140ae5
49 changed files with 138 additions and 138 deletions
|
@ -1082,7 +1082,7 @@ void Universe::print_heap_at_SIGBREAK() {
|
|||
}
|
||||
|
||||
void Universe::print_heap_before_gc() {
|
||||
LogHandle(gc, heap) log;
|
||||
Log(gc, heap) log;
|
||||
if (log.is_debug()) {
|
||||
log.debug("Heap before GC invocations=%u (full %u):", heap()->total_collections(), heap()->total_full_collections());
|
||||
ResourceMark rm;
|
||||
|
@ -1091,7 +1091,7 @@ void Universe::print_heap_before_gc() {
|
|||
}
|
||||
|
||||
void Universe::print_heap_after_gc() {
|
||||
LogHandle(gc, heap) log;
|
||||
Log(gc, heap) log;
|
||||
if (log.is_debug()) {
|
||||
log.debug("Heap after GC invocations=%u (full %u):", heap()->total_collections(), heap()->total_full_collections());
|
||||
ResourceMark rm;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue