Skip to content

Commit

Permalink
fix newline
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterboerner committed Dec 8, 2013
1 parent 1b6994a commit 4afe73b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/debughandler/LogHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void debugPrint(String str) {
lastDate = new Date();
time = lastDate + "\n";
}
out.printf(time + "\t[%s][Debug] " + str, this.name);
out.printf(time + "\t[%s][Debug] " + str + "\n", this.name);
out.close();
} catch (IOException e) {
//oh noes!
Expand Down

0 comments on commit 4afe73b

Please sign in to comment.