Skip to content

Commit

Permalink
Remove console.setDebugFile
Browse files Browse the repository at this point in the history
#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
  • Loading branch information
aguynamedryan committed Jun 23, 2015
1 parent 8016cef commit 7094099
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/org/ohdsi/whiteRabbit/WhiteRabbitMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7094099

Please sign in to comment.