Esempio n. 1
0
 public static void IncreaseIndentation(LocalizedString tag)
 {
     if (!TaskLogger.fileLoggingEnabled)
     {
         return;
     }
     TaskLogger.indentationLevel++;
     if (!string.IsNullOrEmpty(tag))
     {
         TaskLogger.Log(tag);
     }
 }
Esempio n. 2
0
 public static void UnmanagedLog(string s)
 {
     TaskLogger.Log(new LocalizedString(s));
 }