From 3d7314d3c63c27b0e137db1cb682bd852e00ee9b Mon Sep 17 00:00:00 2001 From: Marco Zanon Date: Fri, 2 Aug 2013 10:08:53 +0000 Subject: [PATCH] Added some comment slashes for better readability. --- src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java b/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java index 8be8631..5884ee3 100644 --- a/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java +++ b/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(); -- 2.30.2