Example #1
0
 internal Logger(LogTarget target)
 {
     Target = target;
 }
 /// <summary>
 /// Creates a new Log Output
 /// </summary>
 /// <param name="target">The log target we're receiving from</param>
 protected LogOutput(LogTarget target)
 {
     Target = target;
 }
Example #3
0
 internal LogSection(LogTarget target, LogEntry entry, int priority)
 {
     Target   = target;
     Entry    = entry;
     Priority = priority;
 }