Coderr adapter for NLog
Coderr - Find more errors and solve them faster!
This library is an adapter for Coderr. It picks up all logged exceptions from NLog and
uploads them to the Coderr Server for further analysis.
You need to install a Coderr Server to be able to analyze and manage the errors.
To activate the NLog integration add Coderr to your nlog.config:
<nlog>
<extensions>
<add assembly="Coderr.Client.Nlog"></add>
</extensions>
<targets>
<!-- other targets .. -->
<target name="Coderr" type="Coderr"></target>
</targets>
<rules>
<!-- other rules -->
<logger name="*" minlevel="Debug" writeTo="Coderr" ></logger>
</rules>
</nlog>