Last active
June 7, 2017 08:19
-
-
Save j5alive/2d24b40fa3e0b101b5f6d91b4af4aa5d to your computer and use it in GitHub Desktop.
Raygun4Net automatic Breadcrumb logging with NLog
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
<?xml version="1.0"?> | |
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<extensions> | |
<add assembly="Raygun.Examples"/> | |
</extensions> | |
<targets> | |
<target name="breadcrumb" xsi:type="RaygunBreadcrumb" includeMethodInfo="false" /> | |
</targets> | |
<rules> | |
<logger name="*" minlevel="Debug" writeTo="breadcrumb" /> | |
</rules> | |
</nlog> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment