我有一个 WCF 独立服务,它在我的 app.config 文件中使用 log4net 及其所有配置,并且我在第一次运行服务时加密配置文件。我目前将此设置为作为控制台应用程序运行,但是当我启动它时,在保存加密的配置文件后,服务会打印出来
log4net:错误 XmlHierarchyConfigurator:找不到属性 [EncryptedData] 在 [log4net.Repository.Hierarchy.Hierarchy] 上设置对象
这让我感到困惑,因为在新加密的配置文件的 log4net 部分中有一个 EncryptedData 部分。
我正在使用以下方法加密配置文件部分:
section.SectionInformation.ProtectSection("DataProtectionConfigurationProvider");
我的 log4net 配置文件部分看起来像这样(之前):
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" restartOnExternalChanges="false" />
</configSections>
<log4net>
<appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender" >
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
</layout>
</appender>
<root>
<appender-ref ref="ConsoleAppender" />
</root>
</log4net>
之后:
<log4net configProtectionProvider="DataProtectionConfigurationProvider">
<EncryptedData>
<CipherData>
<CipherValue>AQAAANCMnd8BFdERjHoAw <etc> </CipherValue>
</CipherData>
</EncryptedData>
</log4net>
Log4net 仍然适用于加密配置(编辑:这是在调试中;当作为服务发布时(但权限打开)它无法记录任何内容)
那么,谁能告诉我这个错误是什么以及如何修复我的代码以阻止它被抛出。