2

我在一个单独的地方有一个类库和配置文件我想使用它所以我执行以下操作

LogManager.Configuration = new NLog.Config.XmlLoggingConfiguration(configurationFile , true);
LogManager.ReconfigExistingLoggers();

NLog 的配置是远程 app.config 的一部分,看起来像

<configuration>
    <!-- ... -->
    <configSections>
        <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />
    </configSections>
    <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <targets>
            <!-- 
              Log in a separate thread, possibly queueing up to
              5000 messages. When the queue overflows, discard any
              extra messages
            -->
            <target name="file" xsi:type="AsyncWrapper" queueLimit="5000" overflowAction="Discard" 
                layout="${machinename} - ${level} - ${longdate} - ${callsite} - ${threadid} - ${message} ${exception:format=tostring}">
                <target xsi:type="File" fileName="C:\logs/${level}.txt" />
            </target>
        </targets>
        <rules>
            <logger name="*" minlevel="Debug" writeTo="file" />
        </rules>
    </nlog>
</configuration>

配置对象LogManager.Configuration总是有默认值,知道如何解决这个问题。

4

1 回答 1

3

创建第一个 NLog Logger 对象时,NLog 将尝试自动加载 NLog.config(或 app.config)。搜索多个位置:

https://github.com/nlog/NLog/wiki/Configuration-file#configuration-file-locations

您应该尝试激活 NLog 内部记录器,看看为什么它在不手动加载的情况下找不到“远程 app.config”(可以通过代码启用):

https://github.com/NLog/NLog/wiki/Internal-Logging

不建议类库本身尝试修改全局 NLog 配置,因为它可能会使主应用程序感到惊讶。如果想为你的类库设置一个独立的 NLog 配置,那么你应该考虑创建一个独立的 NLog LogFactory:

https://github.com/NLog/NLog/wiki/Configure-component-logging

如果您想从非标准路径(不是 app.config)加载 NLog.config。然后你也可以这样做:

https://github.com/NLog/NLog/wiki/Explicit-NLog-configuration-loading

于 2018-11-09T23:11:35.547 回答