2

我正在尝试使用以下方法将事件级别设置为关键:

WriteEvent(id, categoryName, EventSeverity.ErrorCritical, entry);

但在事件日志中,它仅将事件级别显示为错误而不是严重。我还需要设置其他配置和参数吗?

4

1 回答 1

0

你的意思是Microsoft.SharePoint.Administration.EventSeverity?它由 ShP 使用并映射到它自己的事件日志。

使用System.Diagnostics.EventLogEntryType映射到 Windows 事件日志的正确方法:

Error
Warning
Information
SuccessAudit
FailureAudit
于 2012-07-25T11:33:04.423 回答