C# Class Aspects.Logging.Tests.Utilities.MockLogger

The mock logger.
Inheritance: ILogger
Datei anzeigen Open project: vnvizitiu/AOP

Public Methods

Method Description
Debug ( string message ) : void

The debug.

Error ( string message, Exception exception ) : void

The error.

Fatal ( string message, Exception exception ) : void

The fatal.

Info ( string message ) : void

The info.

Trace ( string message ) : void

The trace.

Warn ( string message ) : void

The warn.

Method Details

Debug() public method

The debug.
public Debug ( string message ) : void
message string /// The message. ///
return void

Error() public method

The error.
public Error ( string message, Exception exception ) : void
message string /// The message. ///
exception System.Exception /// The exception. ///
return void

Fatal() public method

The fatal.
public Fatal ( string message, Exception exception ) : void
message string /// The message. ///
exception System.Exception /// The exception. ///
return void

Info() public method

The info.
public Info ( string message ) : void
message string /// The message. ///
return void

Trace() public method

The trace.
public Trace ( string message ) : void
message string /// The message. ///
return void

Warn() public method

The warn.
public Warn ( string message ) : void
message string /// The message. ///
return void