Description:
Make use of logging. (grafted from b4492d06b6931146da7327a10d717dd338b7548e)
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r235:99159ad39eff -

1 NO CONTENT: modified file, binary diff hidden
@@ -103,7 +103,7
103 103 #if DEBUG
104 104 foreach (System.Reflection.Assembly assembly in AppDomain.CurrentDomain.GetAssemblies())
105 105 {
106 Console.Out.Write(assembly.ToString() + "\n");
106 Logging.Debug(assembly.ToString() + "\n");
107 107 }
108 108 ;
109 109
@@ -234,6 +234,8
234 234
235 235 this.budgetWindow = new BudgetWindow(new Budget { }, this.monoFont, 0, 0);
236 236
237 Logging.Success("Content loaded.");
238
237 239
238 240 }
239 241
@@ -31,7 +31,7
31 31
32 32 var result = grammar.Flatten(variableString);
33 33 #if DEBUG
34 System.Console.Write(variableString);
34 Logging.Debug(variableString);
35 35 #endif
36 36
37 37 return new NewsItem {
You need to be logged in to leave comments. Login now