# HG changeset patch # User Doug Simon # Date 1336381738 -7200 # Node ID 4bfdf8cf87af3567e48a968ddfda882d30267d79 # Parent 8b5ef24da264e68da6a09cc9226eff5d60228f61 added thread name to debug info message diff -r 8b5ef24da264 -r 4bfdf8cf87af graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotDebugConfig.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotDebugConfig.java Fri May 04 16:54:27 2012 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotDebugConfig.java Mon May 07 11:08:58 2012 +0200 @@ -60,7 +60,7 @@ // Report the filters that have been configured so the user can verify it's what they expect if (logFilter != null || meterFilter != null || timerFilter != null || dumpFilter != null || methodFilter != null) { - TTY.println(this.toString()); + TTY.println(Thread.currentThread().getName() + ": " + toString()); } if (GraalOptions.PrintIdealGraphFile) {