Merge pull request #6955 from deathbeam/timestamps-space

Add space after timestamp
This commit is contained in:
Tomas Slusny
2018-12-17 10:54:03 +01:00
committed by GitHub

View File

@@ -79,7 +79,7 @@ public class TimestampPlugin extends Plugin
final String dateFormat = time.get(ChronoField.HOUR_OF_DAY) + ":" +
String.format("%02d", time.get(ChronoField.MINUTE_OF_HOUR));
String timestamp = "[" + dateFormat + "]";
String timestamp = "[" + dateFormat + "] ";
Color timestampColour = getTimestampColour();
if (timestampColour != null)