Skip to content

coderrio/Coderr.Client.NLog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NLog adapter for Coderr

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.

Getting started guide

Configuration

To activate the NLog integration add Coderr to your nlog.config:

<nlog>
  <extensions>
    <add assembly="Coderr.Client.Nlog"/>
  </extensions>
  <targets>
    <!-- other targets .. -->

    <target name="Coderr" type="Coderr"/>
  </targets>

  <rules>
    <!-- other rules -->

    <logger name="*" minlevel="Debug" writeTo="Coderr" />
  </rules>
</nlog>

Questions

https://discuss.coderr.io/