Gets or sets a value indicating whether log4net internal logging is enabled or disabled.
true
if log4net internal logging is enabled, otherwise false
.
When set to true
, internal debug level logging will be displayed.
This value can be set by setting the application setting log4net.Internal.Debug
in the application configuration file.
The default value is false
, i.e. debugging is disabled.
The following example enables internal debugging using the application configuration file :
[XML]
<configuration>
<appSettings>
<add key="log4net.Internal.Debug" value="true" />
</appSettings>
</configuration>
LogLog Class | log4net.Util Namespace