C# 클래스 Transloadit.Log.TransloaditLogger

Default Transloadit logger implementation
상속: ITransloaditLogger
파일 보기 프로젝트 열기: nkranitz/transloadit-csharp-sdk

공개 메소드들

메소드 설명
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

메소드 상세

LogError() 공개 메소드

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
리턴 void

LogError() 공개 메소드

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
리턴 void

LogError() 공개 메소드

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
리턴 void

LogInfo() 공개 메소드

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
리턴 void