The following tables list the members exposed by Log.
Name | Description | |
---|---|---|
![]() ![]() | IsInfoEnabled | Returns true if 'Info' messages are being recorded. |
![]() ![]() | IsVerboseEnabled | Returns true if 'Verbose' messages are being recorded. |
Name | Description | |
---|---|---|
![]() ![]() | AppStart | Enables calls to Log.xxx() to be processed on another thread to improve throughput... Place this in a using() statement within Main: using( new Log.AppStart("Some Name") ) This call (and Disponse) IS Thread safe and can be called multiple times either concurrently, sequentially, nested, or overlapping calls are all permitted and handled. |
![]() ![]() | ClearStack | Forces any left-behind calls to Start() to be closed. |
![]() ![]() | Critical | Overloaded. Logs a Critical error |
![]() ![]() | Error | Overloaded. Logs an Error |
![]() ![]() | Info | Overloaded. Logs a Info error |
![]() ![]() | Start | Pushes a string into the trace stack so that log messages appear with the 'context' set to the information provided. The operation named should be performed by the current thread and the IDisposable object returned should be disposed when the operation completes. |
![]() ![]() | Verbose | Overloaded. Logs a Verbose error |
![]() ![]() | Warning | Overloaded. Logs a Warning |
![]() ![]() | Write | Write directly to the log reguardless of the currently configured log-LogLevel |
Name | Description | |
---|---|---|
![]() | LogWrite | This event is raised when the logging routines are called and the LogLevel is at or higher than the current Log.LogLevels field value. |