Example #1
0
 public LoggingTest()
 {
     LogDelegator.SetLog(ref theLog);
     theLog.Register(this);
 }
Example #2
0
 public CodeSnippets()
 {
     LogDelegator.SetLog(ref theLog);
     theLog.Register(this);
 }
Example #3
0
 public ConsoleLogger()
 {
     LogDelegator.SetLog(ref theLog);
     theLog.Register(this);
 }
Example #4
0
 public ArrayLogger()
 {
     LogDelegator.SetLog(ref theLog);
     Items = new List <Log.LogItem>();
     theLog.Register(this);
 }