次のログ アセンブリを使用してコンソール アプリケーションを構成しようとしています。
- Common.Logging.dll (2.1.0.0)
- Common.Logging.Log4Net1211.dll (2.1.0.0)
- log4net.dll (1.2.11.0)
ロガーがプログラムで構成されている場合は、すべて正常に動作します。
NameValueCollection properties = new NameValueCollection(); properties["showDateTime"] = "true";
Common.Logging.LogManager.Adapter = new Common.Logging.Simple.ConsoleOutLoggerFactoryAdapter(properties);
しかし、次の構成ファイルを使用して起動しようとすると、爆発します。
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="common">
<section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
</sectionGroup>
</configSections>
<common>
<logging>
<factoryAdapter type="Common.Logging.Log4Net.Log4NetLoggerFactoryAdapter, Common.Logging.Log4Net">
<arg key="configType" value="FILE-WATCH"/>
<arg key="configFile" value="~/Log4NET.xml"/>
</factoryAdapter>
</logging>
</common>
</configuration>
関連するエラー メッセージは次のとおりです。
{"Unable to cast object of type 'System.Configuration.DefaultSection' to type 'System.Configuration.AppSettingsSection'."}
{"Failed obtaining configuration for Common.Logging from configuration section 'common/logging'."}
構成ファイルを解析できないようですが、正しい形式が何であるかを知っている人はいますか、それとも何か他の問題がありますか? 公式ドキュメントを使用して構成ファイルを作成しました。