gpt4 book ai didi

c# - NLog 的 MongoDb 目标

转载 作者:可可西里 更新时间:2023-11-01 10:46:16 25 4
gpt4 key购买 nike

我想使用 NLog 和 MongoDb 进行日志记录。它不工作。我从未使用过 mongoDb 和 Nlog。

我收到了这个警告:

This is an invalid xsi:type "http://www.nlog-project.org/schemas/NLog.xsd:Mongo"

我该如何解决?

NLog.config :

    <?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
autoReload="true"
throwExceptions="false"
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">


<extensions>
<add assembly="NLog.Mongo"/>
</extensions>


<targets>
<target xsi:type="Database"
name="mongoCustom"
includeDefaults="false"
connectionString="mongodb://localhost"
collectionName="book"
databaseName="store"
cappedCollectionSize="26214400">
<property name="Date" layout="${date}" bsonType="DateTime" />
<property name="Message" layout="${message}"/>
<property name="Code" layout="${var:logCode}"/>

</target>
</targets>

最佳答案

This is an invalid xsi:type "http://www.nlog-project.org/schemas/NLog.xsd:Mongo"

您可以忽略此警告。 XSD 包含目标的所有名称,但仅包含非第 3 方的目标。

检查错误,enable and check the internal log of NLog

关于c# - NLog 的 MongoDb 目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51728268/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com