| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- namespace Xilium.CefGlue.Helpers.Log
- {
- public interface ILogger
- {
- void TraceException(string message, Exception exception);
- void Trace(string message, params object[] args);
- void DebugException(string message, Exception exception);
- void Debug(string message, params object[] args);
- void ErrorException(string message, Exception exception);
- void Error(string message, params object[] args);
- void FatalException(string message, Exception exception);
- void Fatal(string message, params object[] args);
- void InfoException(string message, Exception exception);
- void Info(string message, params object[] args);
- void WarnException(string message, Exception exception);
- void Warn(string message, params object[] args);
- bool IsTraceEnabled { get; }
- bool IsDebugEnabled { get; }
- bool IsErrorEnabled { get; }
- bool IsFatalEnabled { get; }
- bool IsInfoEnabled { get; }
- bool IsWarnEnabled { get; }
- }
- }
|