0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Log4Net自身のデバッグログを出力する方法

Posted at

下記URLのHow do I enable log4net internal debugging?を参照していただくとトレースログにlog4net自身のデバッグログを出力する方法が説明されています。
Apache log4net Frequently Asked Questions
http://logging.apache.org/log4net/release/faq.html

以下をアプリケーションコンフィグファイル(hogehoge.exe.config)に記載します。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <appSettings>
        <add key="log4net.Internal.Debug" value="true"/>
    </appSettings>
</configuration>
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?