我正在尝试写入应用程序事件日志。以下代码在 Windows 8 下(以管理员权限运行时)执行没有错误,但在 Windows 事件查看器中查看应用程序日志时,我没有看到任何事件。谁能帮我弄清楚我做错了什么。我需要在 app.config 中添加一些内容吗?
using System.Diagnostics;
namespace tracetest2
{
class Program
{
static void Main(string[] args)
{
if (!EventLog.SourceExists("TestSource"))
{
EventLog.CreateEventSource("TestSource", "Application");
}
EventLog appLog = new EventLog("Application", ".", "TestSource");
appLog.EnableRaisingEvents = true;
appLog.EndInit();
Debug.WriteLine(appLog.Entries.Count);
appLog.WriteEntry("An entry to the Application event log.");
Debug.WriteLine(appLog.Entries.Count);
}
}
}