From: Marco Zanon Date: Fri, 2 Aug 2013 10:08:53 +0000 (+0000) Subject: Added some comment slashes for better readability. X-Git-Tag: SVN-to-Git~109 X-Git-Url: https://gitweb.marcozanon.com/?a=commitdiff_plain;h=0e61adeaaedd86e56ca704b583465690a0390951;p=Macaco Added some comment slashes for better readability. --- diff --git a/3.x/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java b/3.x/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java index 8be8631..5884ee3 100644 --- a/3.x/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java +++ b/3.x/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java @@ -80,10 +80,12 @@ public class MLogPlainTextFile extends MLogTarget { // try { String timestamp = (new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")).format(new Date()); + // StringBuilder separator = new StringBuilder(" "); for (int i = 0; i < indentation; i++) { separator.append(" "); } + // synchronized (this.getBufferReference()) { this.getBufferReference().write(timestamp + separator + message); this.getBufferReference().newLine();