C# Class Transloadit.Log.TransloaditLogger

Default Transloadit logger implementation
Inheritance: ITransloaditLogger
Afficher le fichier Open project: nkranitz/transloadit-csharp-sdk

Méthodes publiques

Méthode 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 méthode

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
Résultat void

LogError() public méthode

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
Résultat void

LogError() public méthode

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
Résultat void

LogInfo() public méthode

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
Résultat void