C# Class FdoToolbox.Core.ETL.WithLoggingMixin

A base class that expose easily logging events
Show file Open project: jumpinjackie/fdotoolbox

Protected Methods

Method Description
ClearErrors ( ) : void

Clears the errors.

Debug ( string format ) : void

Logs a debug message

Error ( Exception exception, string format ) : void

Logs an error message

Info ( string format ) : void

Logs an information message

Notice ( string format ) : void

Logs a notice message

Warn ( string format ) : void

Logs a warn message

WithLoggingMixin ( ) : System

Initializes a new instance of the WithLoggingMixin class.

Method Details

ClearErrors() protected method

Clears the errors.
protected ClearErrors ( ) : void
return void

Debug() protected method

Logs a debug message
protected Debug ( string format ) : void
format string The format.
return void

Error() protected method

Logs an error message
protected Error ( Exception exception, string format ) : void
exception System.Exception The exception.
format string The format.
return void

Info() protected method

Logs an information message
protected Info ( string format ) : void
format string The format.
return void

Notice() protected method

Logs a notice message
protected Notice ( string format ) : void
format string The format.
return void

Warn() protected method

Logs a warn message
protected Warn ( string format ) : void
format string The format.
return void

WithLoggingMixin() protected method

Initializes a new instance of the WithLoggingMixin class.
protected WithLoggingMixin ( ) : System
return System