如何在“关键”级别记录事件日志?

时间:2016-08-03 14:30:21

标签: c# wpf event-log

我想将EventViewer中的条目记录为严重,但我没有关联EventLogType:

System.Diagnostics.EventLog.WriteEntry("ApplicationName", message, System.Diagnostics.EventLogEntryType.Error);

根据MSDN,EventLogEntryType只有5个可能的值:

Error   
Warning 
FailureAudit
Information
SuccessAudit

在EventViewer中,有5级严重性:

Critical
Error
Warning
Information
Verbose

但它没有映射! 错误记录错误 警告登录警告 但FailureAudit,Information和SuccessAudit登录信息

您是否知道如何使用EventLog.WriteEvent记录关键事件?

1 个答案:

答案 0 :(得分:2)

在MSDN中写的是

  

重要事件以屏幕上的即时消息的形式发送给用户。其他事件通知将写入多个事件日志之一,记录信息以供将来参考。

我相信它只是从系统本身生成的。

https://msdn.microsoft.com/en-us/library/dhacse28(v=vs.100).aspx#Anchor_0