C# 클래스 Hawkeye.Logging.BaseLogService

Abstract base class allowing for a quick implementation of a logging service.
상속: ILogService
파일 보기 프로젝트 열기: odalet/Hawkeye2

공개 메소드들

메소드 설명
Log ( ILogEntry entry ) : void

Logs the specified log entry.

MakeLogEntry ( LogLevel level, string message, Exception exception ) : ILogEntry

Makes a ILogEntry object from the specified parameters.

메소드 상세

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

Logs the specified log entry.
public abstract Log ( ILogEntry entry ) : void
entry ILogEntry The entry to log.
리턴 void

MakeLogEntry() 공개 메소드

Makes a ILogEntry object from the specified parameters.
public MakeLogEntry ( LogLevel level, string message, Exception exception ) : ILogEntry
level LogLevel The trace level.
message string The message object.
exception System.Exception The exception.
리턴 ILogEntry