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