Skip to content

Instantly share code, notes, and snippets.

@ejsmith
Created July 25, 2013 15:51
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 ejsmith/6081109 to your computer and use it in GitHub Desktop.
Save ejsmith/6081109 to your computer and use it in GitHub Desktop.
Exceptionless config file samples
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="exceptionless" type="Exceptionless.Configuration.ExceptionlessSection, Exceptionless" />
</configSections>
<!-- attribute names are cases sensitive, must specify a path that you have write access to -->
<exceptionless apiKey="API_KEY_HERE" enableLogging="true" logPath="C:\log.txt" />
...
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules>
<remove name="ExceptionlessModule" />
<add name="ExceptionlessModule" type="Exceptionless.Mvc.ExceptionlessModule, Exceptionless.Mvc" />
</modules>
...
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment