From 7094099b7ad0569a74183b6581004dbaf6cc30bb Mon Sep 17 00:00:00 2001 From: Ryan Duryea Date: Tue, 23 Jun 2015 12:36:48 -0700 Subject: [PATCH] Remove console.setDebugFile #94 describes an error I encountered when WhiteRabbit was running a scan on some files. WhiteRabbit attempted to set the debug file to C:\temp\debug.txt, a path that is invalid Mac OS X. I'm under the impression this line isn't critical and can be safely removed to get scanning working again. Closes #94 --- src/org/ohdsi/whiteRabbit/WhiteRabbitMain.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/org/ohdsi/whiteRabbit/WhiteRabbitMain.java b/src/org/ohdsi/whiteRabbit/WhiteRabbitMain.java index 8b2c108f..1926f396 100644 --- a/src/org/ohdsi/whiteRabbit/WhiteRabbitMain.java +++ b/src/org/ohdsi/whiteRabbit/WhiteRabbitMain.java @@ -526,7 +526,6 @@ private JComponent createConsolePanel() { consoleArea.setEditable(false); Console console = new Console(); console.setTextArea(consoleArea); - console.setDebugFile("c:/temp/debug.txt"); System.setOut(new PrintStream(console)); System.setErr(new PrintStream(console)); JScrollPane consoleScrollPane = new JScrollPane(consoleArea);