Skip to content

Instantly share code, notes, and snippets.

@jamescrowley
Created October 1, 2014 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamescrowley/82e888a5fa6ecd429b5d to your computer and use it in GitHub Desktop.
Save jamescrowley/82e888a5fa6ecd429b5d to your computer and use it in GitHub Desktop.
web.config
<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