C# Class Transloadit.Log.TransloaditLogger

Default Transloadit logger implementation
Inheritance: ITransloaditLogger
ファイルを表示 Open project: nkranitz/transloadit-csharp-sdk

Public Methods

Method Description
LogError ( Type type, Exception exception ) : void

Logs errors during application processes

LogError ( Type type, Exception exception, string message ) : void

Logs errors during application processes

LogError ( Type type, string message ) : void

Logs errors during application processes

LogInfo ( Type type, string message ) : void

Logs information during application processes

Method Details

LogError() public method

Logs errors during application processes
public LogError ( Type type, Exception exception ) : void
type System.Type Type of the class, where the log is proceed
exception System.Exception Exception, which is the reason of the error
return void

LogError() public method

Logs errors during application processes
public LogError ( Type type, Exception exception, string message ) : void
type System.Type Type of the class, where the log is proceed
exception System.Exception Exception, which is the reason of the error
message string Parameterized error message
return void

LogError() public method

Logs errors during application processes
public LogError ( Type type, string message ) : void
type System.Type Type of the class, where the log is proceed
message string Parameterized error message
return void

LogInfo() public method

Logs information during application processes
public LogInfo ( Type type, string message ) : void
type System.Type Type of the class, where the log is proceed
message string Parameterized info message
return void