1

我在将事件写入 Windows 事件日志时遇到问题。我浏览了这些帖子,我认为我做得对,但我仍然在事件查看器中收到以下错误:

消息资源存在,但在字符串/消息表中找不到消息

有人对我所缺少的有任何想法吗?

我在 WIX 安装程序中创建了事件源:

<Fragment>
    <PropertyRef Id="NETFRAMEWORK35"/>
    <PropertyRef Id="NETFRAMEWORK20"/>
    <PropertyRef Id="NETFRAMEWORK20INSTALLROOTDIR"/>
    <PropertyRef Id="NETFRAMEWORK20INSTALLROOTDIR64" />

    <Component Id='EventSource'
               Directory='INSTALLDIR'
               Guid='F382AAC5-F7C5-46A4-95CF-EA7724DXXXXX' >
        <Condition>ALLUSERS</Condition>
        <?if $(var.Platform) = x64 ?>
            <util:EventSource Log='Application'
                    Name='MySource'
                    EventMessageFile='[NETFRAMEWORK20INSTALLROOTDIR64]EventLogMessages.dll'
                    KeyPath='yes' />
        <?else ?>
            <util:EventSource Log='Application'
                    Name='MySource'
                    EventMessageFile='[NETFRAMEWORK20INSTALLROOTDIR]EventLogMessages.dll'
                    KeyPath='yes' />
        <?endif ?>
    </Component>
</Fragment>

这是我写入事件日志的 C# 代码:

public class Log
{
    private const string EventSource = "MySource";
    private const string EventLog = "Application";
    private static EventLog _logger = null;

    private static void InitLogger()
    {
        if (!System.Diagnostics.EventLog.SourceExists(EventSource))
        {
            System.Diagnostics.EventLog.CreateEventSource(EventSource, EventLog);
        }
        _logger = new EventLog() { Source = EventSource, Log = EventLog };
    }

    public static void Write(EventLogEntryType entryType, string format, params object[] args)
    {
        string entry = _Format(format, args);

        try
        {
            if (_logger == null)
                InitLogger();
            _logger.WriteEntry(entry, entryType, 1);
        }
        catch (Exception ex)
        {
            Tracer.Misc.Error("Could not write to event log: {0}", entry);
        }

    }

    private static string _Format(string format, object[] args)
    {
        if ((args == null) || (args.Length == 0))
            return format;

        try
        {
            return String.Format(format, args);
        }
        catch (Exception e)
        {
            return format + " [Format Exception:" + e.Message + "]";
        }
    }
}
4

2 回答 2

3

我想出了我的问题。我的代码很好。问题在于我使用的 EventSource 的名称。事件源包含空格和破折号。当我删除它们时,它起作用了。

IE 从“我的事件源”到“我的事件源”

于 2013-02-22T14:48:40.817 回答
0

此外,如果您正在登录“应用程序”,事件源也不能是“应用程序”(仅供参考,供人们弄清楚事件日志记录,正如我现在尝试的那样。不是答案)。它将提供如下的日志记录详细信息 -

找不到来自源应用程序的事件 ID 101 的描述。引发此事件的组件未安装在本地计算机上,或者安装已损坏。您可以在本地计算机上安装或修复组件。

如果事件起源于另一台计算机,则显示信息必须与事件一起保存。

活动中包含以下信息:

日志消息示例

消息资源存在,但在字符串/消息表中找不到消息

于 2015-05-22T11:13:12.750 回答