4

我在 Ektron 8.6 工作

我正在尝试在我的 ektron 网站中使用 EkException 中的辅助函数。我尝试使用以下代码:

 Exception ex=new Exception("Test exception");
  EkException.LogException(ex,System.Diagnostics.EventLogEntryType.Information);


  LogEventEntry entry=new LogEventEntry();
  entry.EventName="Test event";
  entry.Timestamp=DateTime.Now;
  entry.UserID=22;
  entry.VisitorID="Test";
  EkException.AddEventEntry(entry);

  EkException.WriteToEventLog("Myapp",System.Diagnostics.EventLogEntryType.Information);

我尝试以管理员权限执行上述代码,它不会抛出任何错误。但是事件查看器没有变化。

有人可以帮助解决这个问题吗?

4

1 回答 1

2

您想使用该类:Ektron.Cms.Instrumentation;

Log.WriteMessage(“我的消息”, LogLevel.Verbose);


请记住,您必须在 web.config 中打开 LogLevel。

Web.config,将 LogLevel 更新为“4”。Instrumentation.config,将“Trace”添加到“Verbose”</p>

 <add switchValue="All" name="Verbose">
  <listeners>
    <add name="Event Log" />
   <add name="Trace" />
  </listeners>

您也可以使用以下内容,但回顾一下您很可能没有看到任何事件的原因是因为日志级别

    Ektron.Cms.Instrumentation.Log.WriteError("error");
    Ektron.Cms.Instrumentation.Log.WriteWarning("warning");
    Ektron.Cms.Instrumentation.Log.WriteInfo("info");
于 2013-03-27T14:02:11.823 回答