ILogger

ILogger interface

Defines the methods that are used to perform logging.

public interface ILogger

Methods

Name Description
Error(string, Exception) Writes error log message; Error log messages provides information about unrecoverable events in application flow.
Trace(string) Writes trace log message; Trace log messages provides generally useful information about application flow.
Warning(string) Writes warning log message; Warning log messages provides information about unexpected and recoverable event in application flow.

See Also