C# 클래스 PayPal.Log.BaseLogger

Abstract base for the loggers
파일 보기 프로젝트 열기: paypal/PayPal-NET-SDK

공개 메소드들

메소드 설명
BaseLogger ( Type typeGiven ) : System

Initializes a new instance of this logger and associates it with the specified object type.

Debug ( string message ) : void

Records a debug message to the log.

Debug ( string message, System exception ) : void

Records a debug message, including any exception details, to the log.

DebugFormat ( string format ) : void

Records a formatted debug message to the log.

Error ( string message ) : void

Records an error message to the log.

Error ( string message, System exception ) : void

Records an error message, including any exception details, to the log.

ErrorFormat ( string format ) : void

Records a formatted error message to the log.

Flush ( ) : void

Flushes any resources or streams used by this logger.

Info ( string message ) : void

Records an informational message to the log.

Info ( string message, System exception ) : void

Records an informational message, including any exception details, to the log.

InfoFormat ( string format ) : void

Records a formatted informational message to the log.

Warn ( string message ) : void

Records a warning message to the log.

Warn ( string message, System exception ) : void

Records a warning message, including any exception details, to the log.

WarnFormat ( string format ) : void

Records a formatted warning message to the log.

메소드 상세

BaseLogger() 공개 메소드

Initializes a new instance of this logger and associates it with the specified object type.
public BaseLogger ( Type typeGiven ) : System
typeGiven System.Type The type to associate with this logger.
리턴 System

Debug() 공개 추상적인 메소드

Records a debug message to the log.
public abstract Debug ( string message ) : void
message string The message to be logged.
리턴 void

Debug() 공개 추상적인 메소드

Records a debug message, including any exception details, to the log.
public abstract Debug ( string message, System exception ) : void
message string The message to be logged.
exception System Exception details to be logged.
리턴 void

DebugFormat() 공개 추상적인 메소드

Records a formatted debug message to the log.
public abstract DebugFormat ( string format ) : void
format string A composite format string to be logged.
리턴 void

Error() 공개 추상적인 메소드

Records an error message to the log.
public abstract Error ( string message ) : void
message string The message to be logged.
리턴 void

Error() 공개 추상적인 메소드

Records an error message, including any exception details, to the log.
public abstract Error ( string message, System exception ) : void
message string The message to be logged.
exception System Exception details to be logged.
리턴 void

ErrorFormat() 공개 추상적인 메소드

Records a formatted error message to the log.
public abstract ErrorFormat ( string format ) : void
format string A composite format string to be logged.
리턴 void

Flush() 공개 메소드

Flushes any resources or streams used by this logger.
public Flush ( ) : void
리턴 void

Info() 공개 추상적인 메소드

Records an informational message to the log.
public abstract Info ( string message ) : void
message string The message to be logged.
리턴 void

Info() 공개 추상적인 메소드

Records an informational message, including any exception details, to the log.
public abstract Info ( string message, System exception ) : void
message string The message to be logged.
exception System Exception details to be logged.
리턴 void

InfoFormat() 공개 추상적인 메소드

Records a formatted informational message to the log.
public abstract InfoFormat ( string format ) : void
format string A composite format string to be logged.
리턴 void

Warn() 공개 추상적인 메소드

Records a warning message to the log.
public abstract Warn ( string message ) : void
message string The message to be logged.
리턴 void

Warn() 공개 추상적인 메소드

Records a warning message, including any exception details, to the log.
public abstract Warn ( string message, System exception ) : void
message string The message to be logged.
exception System Exception details to be logged.
리턴 void

WarnFormat() 공개 추상적인 메소드

Records a formatted warning message to the log.
public abstract WarnFormat ( string format ) : void
format string A composite format string to be logged.
리턴 void