# HG changeset patch # User Doug Simon # Date 1359317236 -3600 # Node ID 0fdea35766a87e7a93eef437b6ae30fea0fd49ad # Parent 0b68e6426b4846b6f54c3baf15c32787804faeef disabled verbose reporting of non-null options for -G:Dump, -G:Meter, -G:Log, -G:Timer as it means these options cannot be used when running the 'mx bench' command diff -r 0b68e6426b48 -r 0fdea35766a8 graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalDebugConfig.java --- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalDebugConfig.java Sun Jan 27 21:05:19 2013 +0100 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalDebugConfig.java Sun Jan 27 21:07:16 2013 +0100 @@ -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(Thread.currentThread().getName() + ": " + toString()); + // TTY.println(Thread.currentThread().getName() + ": " + toString()); } this.dumpHandlers = dumpHandlers; this.output = output;