不思議に思う前に、 類似トピック を読んで、app.config の factory adapter-Tag の「Common.Logging.Log4Net」の名前を変更しようとしましたが、これは役に立ちませんでした。また、startup-Tag と runtime-Tag をコメントアウトしてみました。
そこで、Common.Logging.LogNet1213.3.3.1 NuGet パッケージをダウンロードしました。今私のプロジェクトにはパッケージがあります
- Common.Logging.3.3.1
- Common.Logging.Core.3.3.1
- Common.LoggingLog4Net1213.3.3.1
- log4net.2.0.5
ドキュメンテーションによると、私は app.config を入力しました。これは次のようになります。
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="log4net" publicKeyToken="669e0ddf0bb1aa2a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.2.15.0" newVersion="1.2.15.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<configSections>
<sectionGroup name="common">
<section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
</sectionGroup>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
</configSections>
<common>
<logging>
<factoryAdapter type="Common.Logging.Log4Net.Log4NetLoggerFactoryAdapter, Common.Logging.Log4Net1213">
<arg key="configType" value="INLINE" />
</factoryAdapter>
</logging>
</common>
<log4net>
<appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger %ndc - %message%newline" />
</layout>
</appender>
<root>
<level value="DEBUG" />
<appender-ref ref="ConsoleAppender" />
</root>
<logger name="MyApp.DataAccessLayer">
<level value="DEBUG" />
</logger>
</log4net>
</configuration>
Common.Logging を試すための私の C# コンソール アプリは次のようになります。
using Common.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CommonLogging
{
class Program
{
static void Main(string[] args)
{
ILog log = LogManager.GetLogger<Program>();
log.Debug("qwerty");
}
}
}
ILog ログの初期化行に例外が表示され、次のメッセージが表示されます。
タイプ 'Common.Logging.ConfigurationException' の未処理の例外が Common.Logging.dll で発生しました
追加情報: 構成セクション 'common/logging' から Common.Logging の構成を取得できませんでした。