我正在尝试使用以下方法将事件级别设置为“严重”:
WriteEvent(id, categoryName, EventSeverity.ErrorCritical, entry);
但是在事件日志中它只显示事件级别为Error而不是Critical。 我需要设置其他配置和参数吗?
答案 0 :(得分:0)
你的意思是Microsoft.SharePoint.Administration.EventSeverity
?它被ShP使用并映射到它自己的事件日志。
使用映射到Windows事件日志的System.Diagnostics.EventLogEntryType
的正确方法:
Error
Warning
Information
SuccessAudit
FailureAudit