helpers: make debug info easier to read by using whitespace

This commit is contained in:
Hylke Bons 2011-05-22 16:04:28 +01:00
parent 98c03392c3
commit c9a472ee80

View file

@ -35,7 +35,7 @@ namespace SparkleLib {
message = " " + message;
// TODO: Write to a log
Console.WriteLine ("[" + timestamp + "]" + "[" + type + "]" + message);
Console.WriteLine (timestamp + " " + "[" + type + "]" + message);
}
}