Skip to main content

LazyLogger

Assembly: ServiceStack.Interfaces.dll
View Source
Declaration
public class LazyLogger : ILog

Properties

Type

View Source
Declaration
public Type Type { get; }

IsDebugEnabled

View Source
Declaration
public bool IsDebugEnabled { get; }

Methods

Debug(Object)

View Source
Declaration
public void Debug(object message)
Parameters
TypeName
System.Objectmessage

Debug(Object, Exception)

View Source
Declaration
public void Debug(object message, Exception exception)
Parameters
TypeName
System.Objectmessage
System.Exceptionexception

DebugFormat(String, Object[])

View Source
Declaration
public void DebugFormat(string format, params object[] args)
Parameters
TypeName
System.Stringformat
System.Object[]args

Error(Object)

View Source
Declaration
public void Error(object message)
Parameters
TypeName
System.Objectmessage

Error(Object, Exception)

View Source
Declaration
public void Error(object message, Exception exception)
Parameters
TypeName
System.Objectmessage
System.Exceptionexception

ErrorFormat(String, Object[])

View Source
Declaration
public void ErrorFormat(string format, params object[] args)
Parameters
TypeName
System.Stringformat
System.Object[]args

Fatal(Object)

View Source
Declaration
public void Fatal(object message)
Parameters
TypeName
System.Objectmessage

Fatal(Object, Exception)

View Source
Declaration
public void Fatal(object message, Exception exception)
Parameters
TypeName
System.Objectmessage
System.Exceptionexception

FatalFormat(String, Object[])

View Source
Declaration
public void FatalFormat(string format, params object[] args)
Parameters
TypeName
System.Stringformat
System.Object[]args

Info(Object)

View Source
Declaration
public void Info(object message)
Parameters
TypeName
System.Objectmessage

Info(Object, Exception)

View Source
Declaration
public void Info(object message, Exception exception)
Parameters
TypeName
System.Objectmessage
System.Exceptionexception

InfoFormat(String, Object[])

View Source
Declaration
public void InfoFormat(string format, params object[] args)
Parameters
TypeName
System.Stringformat
System.Object[]args

Warn(Object)

View Source
Declaration
public void Warn(object message)
Parameters
TypeName
System.Objectmessage

Warn(Object, Exception)

View Source
Declaration
public void Warn(object message, Exception exception)
Parameters
TypeName
System.Objectmessage
System.Exceptionexception

WarnFormat(String, Object[])

View Source
Declaration
public void WarnFormat(string format, params object[] args)
Parameters
TypeName
System.Stringformat
System.Object[]args

Implements