diff --git a/FileLogger.cs b/FileLogger.cs index c08bf47..2763ea3 100644 --- a/FileLogger.cs +++ b/FileLogger.cs @@ -52,7 +52,7 @@ namespace BlubbFish.Utils { this.file.Flush(); } public void setLine(string text, DateTime d) { - this.setLine(d.ToString("[yyyy-MM-dd HH:mm:ss.ffff] " + text)); + this.setLine(d.ToString("[yyyy-MM-dd HH:mm:ss.ffff] ") + text); } } }