hotspot/src/share/vm/memory/binaryTreeDictionary.cpp
changeset 37242 91e5f98fff6f
parent 35061 be6025ebffea
child 37254 8631304f255c
--- a/hotspot/src/share/vm/memory/binaryTreeDictionary.cpp	Mon Apr 04 09:15:01 2016 +0200
+++ b/hotspot/src/share/vm/memory/binaryTreeDictionary.cpp	Mon Apr 04 09:15:15 2016 +0200
@@ -1190,7 +1190,7 @@
   // Does walking the tree 3 times hurt?
   set_tree_surplus(splitSurplusPercent);
   set_tree_hints();
-  LogHandle(gc, freelist, stats) log;
+  Log(gc, freelist, stats) log;
   if (log.is_trace()) {
     ResourceMark rm;
     report_statistics(log.trace_stream());
@@ -1232,7 +1232,7 @@
   FreeList_t* total() { return &_total; }
   size_t total_free() { return _total_free; }
   void do_list(FreeList<Chunk_t>* fl) {
-    LogHandle(gc, freelist, census) log;
+    Log(gc, freelist, census) log;
     outputStream* out = log.debug_stream();
     if (++_print_line >= 40) {
       ResourceMark rm;
@@ -1246,7 +1246,7 @@
 
 #if INCLUDE_ALL_GCS
   void do_list(AdaptiveFreeList<Chunk_t>* fl) {
-    LogHandle(gc, freelist, census) log;
+    Log(gc, freelist, census) log;
     outputStream* out = log.debug_stream();
     if (++_print_line >= 40) {
       FreeList_t::print_labels_on(out, "size");