changeset 5307:2558ff0945f8

small change to scope log output
author Lukas Stadler <lukas.stadler@jku.at>
date Wed, 25 Apr 2012 14:57:40 +0200
parents 55bf72fafc41
children 820fce52a244 6a812002a918
files graal/com.oracle.graal.debug/src/com/oracle/graal/debug/internal/DebugScope.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.debug/src/com/oracle/graal/debug/internal/DebugScope.java	Wed Apr 25 14:34:29 2012 +0200
+++ b/graal/com.oracle.graal.debug/src/com/oracle/graal/debug/internal/DebugScope.java	Wed Apr 25 14:57:40 2012 +0200
@@ -107,7 +107,7 @@
     public void log(String msg, Object... args) {
         if (isLogEnabled()) {
             if (lastLogScope.get() != this) {
-                output.println("scope: " + qualifiedName + " " + this);
+                output.println("scope: " + qualifiedName);
                 lastLogScope.set(this);
             }
             output.println(String.format(msg, args));