예제 #1
0
파일: Logger.cs 프로젝트: iodandidiot/Game1
 /// <summary>Publish raw LogEntry.</summary>
 public virtual void Raw(LogEntry logEntry)
 {
     logPublisher(logEntry);
 }
예제 #2
0
 /// <summary>Publish raw LogEntry.</summary>
 public virtual void Raw(LogEntry logEntry)
 {
     if (logEntry != null)
     {
         logPublisher(logEntry);
     }
 }