--- trunk/RomCheater.Logging/Logger.cs 2012/05/09 08:51:38 23 +++ trunk/RomCheater.Logging/Logger.cs 2012/05/09 08:59:52 24 @@ -23,12 +23,14 @@ namespace RomCheater.Logging public static void Write(string format, params object[] args) { init(); - lh.Write(format, args); + string new_format = " " + format; + lh.Write(new_format, args); } public static void WriteLine(string format, params object[] args) { init(); - lh.WriteLine(format, args); + string new_format = " " + format; + lh.WriteLine(new_format, args); } #endregion |