Пример #1
0
 public AppException(AppMsg msg)
     : base(msg.ToString())
 {
     this.Message = msg;
     this.Caller  = Message.Caller;
     this.File    = Message.CallerFile;
     this.Line    = Message.FileLine;
 }
Пример #2
0
Файл: Log.cs Проект: 0xCM/arrows
 public void Log(AppMsg src)
 {
     lock (locker)
         LogPath().Append(src.ToString());
 }