下面是我用来初始化事件日志的代码,下面是我用来写入日志的示例代码行。
private string sSource = "DaVinci";
private string sLog = "WCF WebService";
//Initialize Event Log
if(!EventLog.SourceExists(sSource)) EventLog.CreateEventSource(sSource, sLog);
//Write openining message
EventLog.WriteEntry(sSource, "Opening WCF Service", EventLogEntryType.Warning);
但是,该程序当前并未按照指示写入日志。没有任何类型的消息被写入。任何人都可以看到上面的代码有什么问题,或者提供任何关于在哪里寻找问题的建议吗?