Gets or sets a value indicating whether log4net should generate no output from internal logging, not even for errors.
true
if log4net should generate no output at all from internal logging, otherwise false
.
When set to true
will cause internal logging at all levels to be suppressed. This means that no warning or error reports will be logged. This option overrides the InternalDebugging setting and disables all debug also.
This value can be set by setting the application setting log4net.Internal.Quiet
in the application configuration file.
The default value is false
, i.e. internal logging is not disabled.
The following example disables internal logging using the application configuration file :
[XML]
<configuration>
<appSettings>
<add key="log4net.Internal.Quiet" value="true" />
</appSettings>
</configuration>
LogLog Class | log4net.Util Namespace