C# Class SharpLogger.Loggers.NullLogger

Inheritance: System.Logger
Mostrar archivo Open project: repinvv/SharpLogger

Public Methods

Method Description
Always ( string message ) : void
Debug ( string message, int id ) : void
Detailed ( string message, int id ) : void
Error ( string message, Exception ex = null ) : void
Event ( string message, int id ) : void
Fatal ( string message, Exception ex = null ) : void
Info ( string message, int id ) : void
Warning ( string message, Exception ex ) : void
Warning ( string message, int id, Exception ex = null ) : void

Method Details

Always() public method

public Always ( string message ) : void
message string
return void

Debug() public method

public Debug ( string message, int id ) : void
message string
id int
return void

Detailed() public method

public Detailed ( string message, int id ) : void
message string
id int
return void

Error() public method

public Error ( string message, Exception ex = null ) : void
message string
ex System.Exception
return void

Event() public method

public Event ( string message, int id ) : void
message string
id int
return void

Fatal() public method

public Fatal ( string message, Exception ex = null ) : void
message string
ex System.Exception
return void

Info() public method

public Info ( string message, int id ) : void
message string
id int
return void

Warning() public method

public Warning ( string message, Exception ex ) : void
message string
ex System.Exception
return void

Warning() public method

public Warning ( string message, int id, Exception ex = null ) : void
message string
id int
ex System.Exception
return void