Skip to content

Commit

Permalink
Also output to console because jTextArea sometimes not work in Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
kyukyunyorituryo authored Nov 14, 2018
1 parent 81f505b commit 26dea87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/github/hmdev/util/LogAppender.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ static public void append(String log)
jTextArea.append(log);
jTextArea.setCaretPosition(jTextArea.getDocument().getLength());
}
else System.out.print(log);
System.out.print(log);
}

static public void printStaclTrace(Exception e)
Expand Down

0 comments on commit 26dea87

Please sign in to comment.