C# 클래스 ArcStache.ComLogUtil

Summary description for LogUtil
Default location for log file is in the "Logs" folder located in the directory the calling DLL exists in.
파일 보기 프로젝트 열기: dtsagile/arcstache 1 사용 예제들

공개 메소드들

메소드 설명
ComLogUtil ( ) : System

Initializes a new instance of the ComLogUtil class. Log file will be created in a "Logs" folder located alongside the running DLL.

LogDebug ( string className, string publicMethodName, string message ) : void

Logs the info.

LogError ( string className, string publicMethodName, string parameters, Exception ex ) : void

Logs the error.

LogError ( string className, string publicMethodName, string parameters, string message, Exception ex ) : void

Logs the error.

LogInfo ( string className, string publicMethodName, string message ) : void

Logs the info.

LogParameters ( string className, string publicMethodName, string parameters ) : void

Logs the parameters.

LogWarning ( string className, string publicMethodName, string message ) : void

Logs the warning.

비공개 메소드들

메소드 설명
Log ( LogLevel level, string message ) : void

Logs the specified message by creating new log file or appending message.

메소드 상세

ComLogUtil() 공개 메소드

Initializes a new instance of the ComLogUtil class. Log file will be created in a "Logs" folder located alongside the running DLL.
public ComLogUtil ( ) : System
리턴 System

LogDebug() 공개 메소드

Logs the info.
public LogDebug ( string className, string publicMethodName, string message ) : void
className string Name of the source class.
publicMethodName string Name of the public method.
message string The message.
리턴 void

LogError() 공개 메소드

Logs the error.
public LogError ( string className, string publicMethodName, string parameters, Exception ex ) : void
className string Name of the source class.
publicMethodName string Name of the public method.
parameters string The method parameters.
ex System.Exception The exception.
리턴 void

LogError() 공개 메소드

Logs the error.
public LogError ( string className, string publicMethodName, string parameters, string message, Exception ex ) : void
className string Name of the source class.
publicMethodName string Name of the public method.
parameters string The method parameters.
message string
ex System.Exception The exception.
리턴 void

LogInfo() 공개 메소드

Logs the info.
public LogInfo ( string className, string publicMethodName, string message ) : void
className string Name of the source class.
publicMethodName string Name of the public method.
message string The message.
리턴 void

LogParameters() 공개 메소드

Logs the parameters.
public LogParameters ( string className, string publicMethodName, string parameters ) : void
className string Name of the class.
publicMethodName string Name of the public method.
parameters string The parameters.
리턴 void

LogWarning() 공개 메소드

Logs the warning.
public LogWarning ( string className, string publicMethodName, string message ) : void
className string Name of the source class.
publicMethodName string Name of the public method.
message string The message.
리턴 void