2007年10月31日 星期三

寫入Event Log

將錯誤訊息或資訊寫入系統的log檔裡。
const string EVENT_LOG_NAME="Application";

EventLog log=null;
string message=null;

message="paladin test";
log=new EventLog();
log.Source=EVENT_LOG_NAME;
log.WriteEntry(message,EventLogEntryType.Information);
 
這樣,在事件檢視器裡的應用程式中,就會看到 message 裡的文字了。
EventLogEntryType是事件類別的列舉型態。有 Error, FailureAudit,
Information, SuccessAudit, Warning 可選擇。

沒有留言:

張貼留言