Skip to content

Instantly share code, notes, and snippets.

@botaor
Created February 25, 2016 15:46
Show Gist options
  • Save botaor/490b2870f08c2b953eb1 to your computer and use it in GitHub Desktop.
Save botaor/490b2870f08c2b953eb1 to your computer and use it in GitHub Desktop.
Internal logging for log4net
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
...
<appSettings>
<add key="log4net.Internal.Debug" value="true"/>
</appSettings>
<system.diagnostics>
<trace autoflush="true">
<listeners>
<add
name="textWriterTraceListener"
type="System.Diagnostics.TextWriterTraceListener"
initializeData="C:\logs\log4net.txt" />
</listeners>
</trace>
</system.diagnostics>
...
</configuration>
@TarasKataryna
Copy link

Maybe you know how it works on .net core?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment