8152632: Rename LogHandle(...) to Log(...)

Reviewed-by: brutisso, mlarsson, rprotacio
This commit is contained in:
Stefan Karlsson 2016-04-04 09:15:15 +02:00
parent ff771a6686
commit 15c4140ae5
49 changed files with 138 additions and 138 deletions

View file

@ -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;