C# 클래스 XSpect.MetaTweet.Log

상속: System.MarshalByRefObject
파일 보기 프로젝트 열기: takeshik/metatweet-old

공개 메소드들

메소드 설명
Alert ( String format ) : void

Alert レベル (レベル 100000) のログを出力します。

Alert ( String message, Exception exception ) : void

Alert レベル (レベル 100000) のログを出力します。

Critical ( String format ) : void

Critical レベル (レベル 90000) のログを出力します。

Critical ( String message, Exception exception ) : void

Critical レベル (レベル 90000) のログを出力します。

Debug ( String format ) : void

Debug レベル (レベル 30000) のログを出力します。

Debug ( String message, Exception exception ) : void

Debug レベル (レベル 30000) のログを出力します。

Emergency ( String format ) : void

Emergency レベル (レベル 120000) のログを出力します。

Emergency ( String message, Exception exception ) : void

Emergency レベル (レベル 120000) のログを出力します。

Error ( String format ) : void

Error レベル (レベル 70000) のログを出力します。

Error ( String message, Exception exception ) : void

Error レベル (レベル 70000) のログを出力します。

Fatal ( String format ) : void

Fatal レベル (レベル 110000) のログを出力します。

Fatal ( String message, Exception exception ) : void

Fatal レベル (レベル 110000) のログを出力します。

Info ( String format ) : void

Info レベル (レベル 40000) のログを出力します。

Info ( String message, Exception exception ) : void

Info レベル (レベル 40000) のログを出力します。

InitializeLifetimeService ( ) : Object
Log ( ILogManager parent, ILogger logger ) : System

Log の新しいインスタンスを初期化します。

Notice ( String format ) : void

Notice レベル (レベル 50000) のログを出力します。

Notice ( String message, Exception exception ) : void

Notice レベル (レベル 50000) のログを出力します。

Severe ( String format ) : void

Severe レベル (レベル 80000) のログを出力します。

Severe ( String message, Exception exception ) : void

Severe レベル (レベル 80000) のログを出力します。

Trace ( String format ) : void

Trace レベル (レベル 20000) のログを出力します。

Trace ( String message, Exception exception ) : void

Trace レベル (レベル 20000) のログを出力します。

Verbose ( String format ) : void

Verbose レベル (レベル 10000) のログを出力します。

Verbose ( String message, Exception exception ) : void

Verbose レベル (レベル 10000) のログを出力します。

Warn ( String format ) : void

Warn レベル (レベル 60000) のログを出力します。

Warn ( String message, Exception exception ) : void

Warn レベル (レベル 60000) のログを出力します。

보호된 메소드들

메소드 설명
WriteLog ( log4net.Core.Level level, String message, Exception exception ) : void

ログを出力します。

메소드 상세

Alert() 공개 메소드

Alert レベル (レベル 100000) のログを出力します。
public Alert ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Alert() 공개 메소드

Alert レベル (レベル 100000) のログを出力します。
public Alert ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

Critical() 공개 메소드

Critical レベル (レベル 90000) のログを出力します。
public Critical ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Critical() 공개 메소드

Critical レベル (レベル 90000) のログを出力します。
public Critical ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

Debug() 공개 메소드

Debug レベル (レベル 30000) のログを出力します。
public Debug ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Debug() 공개 메소드

Debug レベル (レベル 30000) のログを出力します。
public Debug ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

Emergency() 공개 메소드

Emergency レベル (レベル 120000) のログを出力します。
public Emergency ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Emergency() 공개 메소드

Emergency レベル (レベル 120000) のログを出力します。
public Emergency ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

Error() 공개 메소드

Error レベル (レベル 70000) のログを出力します。
public Error ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Error() 공개 메소드

Error レベル (レベル 70000) のログを出力します。
public Error ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

Fatal() 공개 메소드

Fatal レベル (レベル 110000) のログを出力します。
public Fatal ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Fatal() 공개 메소드

Fatal レベル (レベル 110000) のログを出力します。
public Fatal ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

Info() 공개 메소드

Info レベル (レベル 40000) のログを出力します。
public Info ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Info() 공개 메소드

Info レベル (レベル 40000) のログを出力します。
public Info ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

InitializeLifetimeService() 공개 메소드

public InitializeLifetimeService ( ) : Object
리턴 Object

Log() 공개 메소드

Log の新しいインスタンスを初期化します。
public Log ( ILogManager parent, ILogger logger ) : System
parent ILogManager このオブジェクトを生成する、親となるオブジェクト。
logger ILogger ログのバックエンドとなる log4net ロガー オブジェクト。
리턴 System

Notice() 공개 메소드

Notice レベル (レベル 50000) のログを出力します。
public Notice ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Notice() 공개 메소드

Notice レベル (レベル 50000) のログを出力します。
public Notice ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

Severe() 공개 메소드

Severe レベル (レベル 80000) のログを出力します。
public Severe ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Severe() 공개 메소드

Severe レベル (レベル 80000) のログを出力します。
public Severe ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

Trace() 공개 메소드

Trace レベル (レベル 20000) のログを出力します。
public Trace ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Trace() 공개 메소드

Trace レベル (レベル 20000) のログを出力します。
public Trace ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

Verbose() 공개 메소드

Verbose レベル (レベル 10000) のログを出力します。
public Verbose ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Verbose() 공개 메소드

Verbose レベル (レベル 10000) のログを出力します。
public Verbose ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

Warn() 공개 메소드

Warn レベル (レベル 60000) のログを出力します。
public Warn ( String format ) : void
format String 出力するメッセージを表す書式指定文字列。
리턴 void

Warn() 공개 메소드

Warn レベル (レベル 60000) のログを出力します。
public Warn ( String message, Exception exception ) : void
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外。
리턴 void

WriteLog() 보호된 메소드

ログを出力します。
protected WriteLog ( log4net.Core.Level level, String message, Exception exception ) : void
level log4net.Core.Level 出力するログのレベル。
message String 出力するメッセージ。
exception System.Exception 情報を出力する例外、もしくは null
리턴 void