Interface for a logger. More...
Public Member Functions | |
void | Debug (object message) |
Logs a debug message. More... | |
void | Debug (object message, Exception exception) |
Logs a debug message with an exception. More... | |
void | DebugFormat (string format, params object[] args) |
Logs a formatted debug message. More... | |
void | DebugFormat (IFormatProvider provider, string format, params object[] args) |
Logs a formatted debug message. More... | |
void | Error (object message) |
Logs an error message. More... | |
void | Error (object message, Exception exception) |
Logs an error message with an exception. More... | |
void | ErrorFormat (string format, params object[] args) |
Logs a formatted error message. More... | |
void | ErrorFormat (IFormatProvider provider, string format, params object[] args) |
Logs a formatted error message. More... | |
void | Fatal (object message) |
Logs a fatal message. More... | |
void | Fatal (object message, Exception exception) |
Logs a fatal message with an exception. More... | |
void | FatalFormat (string format, params object[] args) |
Logs a formatted fatal message. More... | |
void | FatalFormat (IFormatProvider provider, string format, params object[] args) |
Logs a formatted fatal message. More... | |
void | Info (object message) |
Logs an info message. More... | |
void | Info (object message, Exception exception) |
Logs a info message with an exception. More... | |
void | InfoFormat (string format, params object[] args) |
Logs a formatted info message. More... | |
void | InfoFormat (IFormatProvider provider, string format, params object[] args) |
Logs a formatted info message. More... | |
void | Warn (object message) |
Logs a warning. More... | |
void | Warn (object message, Exception exception) |
Logs a warning with an exception. More... | |
void | WarnFormat (string format, params object[] args) |
Logs a formatted warning. More... | |
void | WarnFormat (IFormatProvider provider, string format, params object[] args) |
Logs a formatted warning. More... | |
Properties | |
bool | IsDebugEnabled [get] |
Gets a value indicating whether debug logging level is enabled. More... | |
bool | IsErrorEnabled [get] |
Gets a value indicating whether error logging level is enabled. More... | |
bool | IsFatalEnabled [get] |
Gets a value indicating whether fatal logging level is enabled. More... | |
bool | IsInfoEnabled [get] |
Gets a value indicating whether info logging level is enabled. More... | |
bool | IsWarnEnabled [get] |
Gets a value indicating whether warn logging level is enabled. More... | |
string | Name [get] |
Gets the name. More... | |
Interface for a logger.
void ExitGames.Logging.ILogger.Debug | ( | object | message | ) |
Logs a debug message.
message | The message. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.Debug | ( | object | message, |
Exception | exception | ||
) |
Logs a debug message with an exception.
message | The message. |
exception | The exception. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.DebugFormat | ( | IFormatProvider | provider, |
string | format, | ||
params object[] | args | ||
) |
Logs a formatted debug message.
provider | The provider. |
format | The formatted string. |
args | The args. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.DebugFormat | ( | string | format, |
params object[] | args | ||
) |
Logs a formatted debug message.
format | The formatted string. |
args | The args. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.Error | ( | object | message | ) |
Logs an error message.
message | The message. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.Error | ( | object | message, |
Exception | exception | ||
) |
Logs an error message with an exception.
message | The message. |
exception | The exception. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.ErrorFormat | ( | IFormatProvider | provider, |
string | format, | ||
params object[] | args | ||
) |
Logs a formatted error message.
provider | The provider. |
format | The formatted string. |
args | The args. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.ErrorFormat | ( | string | format, |
params object[] | args | ||
) |
Logs a formatted error message.
format | The formatted string. |
args | The args. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.Fatal | ( | object | message | ) |
Logs a fatal message.
message | The message. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.Fatal | ( | object | message, |
Exception | exception | ||
) |
Logs a fatal message with an exception.
message | The message. |
exception | The exception. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.FatalFormat | ( | IFormatProvider | provider, |
string | format, | ||
params object[] | args | ||
) |
Logs a formatted fatal message.
provider | The provider. |
format | The formatted string. |
args | The args. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.FatalFormat | ( | string | format, |
params object[] | args | ||
) |
Logs a formatted fatal message.
format | The formatted string. |
args | The args. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.Info | ( | object | message | ) |
Logs an info message.
message | The message. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.Info | ( | object | message, |
Exception | exception | ||
) |
Logs a info message with an exception.
message | The message. |
exception | The exception. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.InfoFormat | ( | IFormatProvider | provider, |
string | format, | ||
params object[] | args | ||
) |
Logs a formatted info message.
provider | The provider. |
format | The formatted string. |
args | The args. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.InfoFormat | ( | string | format, |
params object[] | args | ||
) |
Logs a formatted info message.
format | The formatted string. |
args | The args. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.Warn | ( | object | message | ) |
Logs a warning.
message | The message. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.Warn | ( | object | message, |
Exception | exception | ||
) |
Logs a warning with an exception.
message | The message. |
exception | The exception. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.WarnFormat | ( | IFormatProvider | provider, |
string | format, | ||
params object[] | args | ||
) |
Logs a formatted warning.
provider | The provider. |
format | The formatted string. |
args | The args. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
void ExitGames.Logging.ILogger.WarnFormat | ( | string | format, |
params object[] | args | ||
) |
Logs a formatted warning.
format | The formatted string. |
args | The args. |
Implemented in ExitGames.Logging.Log4Net.Log4NetLogger.
|
get |
Gets a value indicating whether debug logging level is enabled.
|
get |
Gets a value indicating whether error logging level is enabled.
|
get |
Gets a value indicating whether fatal logging level is enabled.
|
get |
Gets a value indicating whether info logging level is enabled.
|
get |
Gets a value indicating whether warn logging level is enabled.
|
get |
Gets the name.