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