Bugfix in Datum

This commit is contained in:
BlubbFish 2017-02-21 09:02:57 +00:00
parent fa346725bc
commit e347e00827

View File

@ -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);
}
}
}