hotspot/src/share/vm/runtime/advancedThresholdPolicy.cpp
changeset 13891 35dabd293e56
parent 13728 882756847a04
child 13952 e3cf184080bc
--- a/hotspot/src/share/vm/runtime/advancedThresholdPolicy.cpp	Mon Sep 24 14:46:06 2012 -0700
+++ b/hotspot/src/share/vm/runtime/advancedThresholdPolicy.cpp	Mon Sep 24 17:59:24 2012 -0700
@@ -30,12 +30,12 @@
 // Print an event.
 void AdvancedThresholdPolicy::print_specific(EventType type, methodHandle mh, methodHandle imh,
                                              int bci, CompLevel level) {
-  tty->print(" rate: ");
+  tty->print(" rate=");
   if (mh->prev_time() == 0) tty->print("n/a");
   else tty->print("%f", mh->rate());
 
-  tty->print(" k: %.2lf,%.2lf", threshold_scale(CompLevel_full_profile, Tier3LoadFeedback),
-                                threshold_scale(CompLevel_full_optimization, Tier4LoadFeedback));
+  tty->print(" k=%.2lf,%.2lf", threshold_scale(CompLevel_full_profile, Tier3LoadFeedback),
+                               threshold_scale(CompLevel_full_optimization, Tier4LoadFeedback));
 
 }