Created
October 1, 2014 12:04
-
-
Save jamescrowley/82e888a5fa6ecd429b5d to your computer and use it in GitHub Desktop.
web.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.diagnostics> | |
<switches> | |
<add name="Microsoft.Owin" value="Verbose" /> | |
</switches> | |
<trace autoflush="true"></trace> | |
<sharedListeners> | |
<add name="file" type="System.Diagnostics.TextWriterTraceListener" initializeData="debug.log" /> | |
</sharedListeners> | |
<sources> | |
<source name="Microsoft.Owin"> | |
<listeners> | |
<add name="file" /> | |
</listeners> | |
</source> | |
<source name="System.Web.Http"> | |
<listeners> | |
<add name="file" /> | |
</listeners> | |
</source> | |
</sources> | |
</system.diagnostics> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment