Gets or sets a value indicating whether log4net internal logging
is enabled or disabled.
Namespace: log4net.UtilAssembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax
Property Value
Type: Booleantrue if log4net internal logging is enabled, otherwise false.
Remarks
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.
Examples
The following example enables internal debugging using the application configuration file :
<configuration><appSettings><add key="log4net.Internal.Debug" value="true" /></appSettings></configuration>
See Also