From e347e00827a80902dd01e000dacc30c6b52a0cd7 Mon Sep 17 00:00:00 2001 From: BlubbFish Date: Tue, 21 Feb 2017 09:02:57 +0000 Subject: [PATCH] Bugfix in Datum --- FileLogger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } }