Beispiel #1
0
        public void Log(WarningLogEntry logEntry)
        {
            //if (sw == null)
            //    sw = new System.IO.StreamWriter(logFn);

            //sw.WriteLine(logEntry.Description);
            //sw.Flush();
            Console.WriteLine(logEntry.Description);

            //throw new NotImplementedException();
        }
Beispiel #2
0
 public void LogError(WarningLogEntry logEntry)
 {
     throw new NotImplementedException();
 }
Beispiel #3
0
 public void Log(WarningLogEntry logEntry)
 {
     Console.WriteLine(logEntry.ToString());
 }