ActionEnabled | Gets a boolean representing whether or not Action logging level is enabled. |
DebugEnabled | Gets a boolean representing whether or not Debug logging level is enabled. |
ErrorEnabled | Gets a boolean representing whether or not Error logging level is enabled. |
FatalEnabled | Gets a boolean representing whether or not Fatal logging level is enabled. |
FunctionEnabled | Gets a boolean representing whether or not Function logging level is enabled. |
InfoEnabled | Gets a boolean representing whether or not Info logging level is enabled. |
PerformanceEnabled | Gets a boolean representing whether or not Performance logging level is enabled. |
WarnEnabled | Gets a boolean representing whether or not Warn logging level is enabled. |
Action | Logs a message at the Action level. |
Debug | Overloaded. Logs a message at the Debug level using the supplied format string as a message template and interpolating the string value of one to five additional arguments arg0-arg4 in place of tokens {0} {1} {2} {3} and {4} in the format string. |
Error | Overloaded. Logs a message at the Error level. |
Fatal | Overloaded. Logs a message at the Fatal level using the supplied format string as a message template and interpolating the string value of one to five additional arguments arg0-arg4 in place of tokens {0} {1} {2} {3} and {4} in the format string. |
FunctionBegin | Logs a message at the Function Level indicating that the function with the given name is being entered. |
FunctionEnd | Logs a message at the Function Level indicating that the function with the given name is being exited. |
Info | Overloaded. Logs a message at the Info level using the supplied format string as a message template and interpolating the string value of one to five additional arguments arg0-arg4 in place of tokens {0} {1} {2} {3} and {4} in the format string. |
PerformanceBegin | Creates a timestamp which marks the start of a code performance measurement, typically used before a blocking call that might take several hundred milliseconds. |
PerformanceEnd | Logs a performance measurement message at the Performance level including the time elapsed since the matching call to PerformanceBegin that created the supplied startTime value. |
Warn | Overloaded. Logs a message at the Warn level. |
ILogger Interface | Plumtree.Remote.Logging Namespace