Added some comment slashes for better readability.
authorMarco Zanon <info@marcozanon.com>
Fri, 2 Aug 2013 10:08:53 +0000 (10:08 +0000)
committerMarco Zanon <info@marcozanon.com>
Fri, 2 Aug 2013 10:08:53 +0000 (10:08 +0000)
3.x/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java

index 8be863127c37a549ba62d9f22bbc8b84a58af7c0..5884ee3e3f2d706ebe73fbdd2b4a3e0bd33733c0 100644 (file)
@@ -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();