Example #1
0
 public void Warn(Exception ex)
 {
     LoggingStation.RaiseEvent(TAG, ex, LogLevel.Warn);
 }
Example #2
0
 public void Warn(object content, Exception ex)
 {
     LoggingStation.RaiseEvent(TAG, content + Environment.NewLine + ex, LogLevel.Warn);
 }
Example #3
0
 public void Warn(object content)
 {
     LoggingStation.RaiseEvent(TAG, content, LogLevel.Warn);
 }
Example #4
0
 public void Info(object content)
 {
     LoggingStation.RaiseEvent(TAG, content, LogLevel.Info);
 }
Example #5
0
 public void Fatal(object content)
 {
     LoggingStation.RaiseEvent(TAG, content, LogLevel.Fatal);
 }
Example #6
0
 public void Debug(object content)
 {
     LoggingStation.RaiseEvent(TAG, content, LogLevel.Debug);
 }