Logging aliases

Built-In

Contains functionality related to logging.

Debug

Debug(LogAction) Writes a debug message to the log using the specified log message action. Evaluation message only if verbosity same or more verbose.
Debug(object) Writes a debug message to the log using the specified value.
Debug(string, object[]) Writes a debug message to the log using the specified format information.
Debug(string) Writes a debug message to the log using the specified string value.

Error

Error(LogAction) Writes an error message to the log using the specified log message action. Evaluation message only if verbosity same or more verbose.
Error(object) Writes an error message to the log using the specified value.
Error(string, object[]) Writes an error message to the log using the specified format information.
Error(string) Writes an error message to the log using the specified string value.

Information

Information(LogAction) Writes an informational message to the log using the specified log message action. Evaluation message only if verbosity same or more verbose.
Information(object) Writes an informational message to the log using the specified value.
Information(string, object[]) Writes an informational message to the log using the specified format information.
Information(string) Writes an informational message to the log using the specified string value.

Verbose

Verbose(LogAction) Writes a verbose message to the log using the specified log message action. Evaluation message only if verbosity same or more verbose.
Verbose(object) Writes a verbose message to the log using the specified value.
Verbose(string, object[]) Writes a verbose message to the log using the specified format information.
Verbose(string) Writes a verbose message to the log using the specified string value.

Verbosity

DiagnosticVerbosity() Sets the log verbosity to diagnostic and returns a disposable that restores the log verbosity on dispose.
MinimalVerbosity() Sets the log verbosity to minimal and returns a disposable that restores the log verbosity on dispose.
NormalVerbosity() Sets the log verbosity to normal and returns a disposable that restores the log verbosity on dispose.
QuietVerbosity() Sets the log verbosity to quiet and returns a disposable that restores the log verbosity on dispose.
VerboseVerbosity() Sets the log verbosity to verbose and returns a disposable that restores the log verbosity on dispose.

Warning

Warning(LogAction) Writes a warning message to the log using the specified log message action. Evaluation message only if verbosity same or more verbose.
Warning(object) Writes an warning message to the log using the specified value.
Warning(string, object[]) Writes a warning message to the log using the specified format information.
Warning(string) Writes an warning message to the log using the specified string value.