Skip to content

Commit

Permalink
Debugging: very minor tracing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mlvdv committed Feb 8, 2016
1 parent 9eace9f commit 9c00f1e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ final class LineBreakpointFactory {

private static final boolean TRACE = Boolean.getBoolean("truffle.debug.trace");
private static final PrintStream OUT = System.out;
private static final String TRACE_PREFIX = "LineBreaks";
private static final String TRACE_PREFIX = "LineBrk";
private static final String BREAKPOINT_NAME = "LineBreakpoint";

@TruffleBoundary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ public final class SLREPL {

public static void main(String[] args) {

System.setProperty("truffle.instrumentation.trace", "false");
System.setProperty("truffle.debug.trace", "false");
System.setProperty("truffle.sl-ast.trace", "false");

// Cheating for the prototype: start from SL, rather than from the client.
final REPLServer server = new REPLServer("application/x-sl", new SLDefaultVisualizer());
server.start();
Expand Down

0 comments on commit 9c00f1e

Please sign in to comment.