如何在关键级别中记录事件日志
本文关键字:记录 事件 日志 | 更新日期: 2023-09-27 17:59:55
我想将EventViewer中的条目记录为Critical,但我没有关联的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记录在Information 中
你知道我如何用EventLog记录关键事件吗。WriteEvent?
我相信它只是从系统本身生成的:
关键事件以屏幕上即时消息的形式发送给用户。其他事件通知会写入几个事件日志中的一个,这些日志记录信息以备将来参考。
源MSDN