Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

NLog Sentry is a custom target for NLog enabling you to send logging messages to the Sentry logging service.

License

Notifications You must be signed in to change notification settings

geomatics-io/NLog.Targets.Sentry

 
 

Repository files navigation

Sentry Target for NLog

NLog Sentry is a custom target for NLog enabling you to send logging messages to the Sentry logging service.

Configuration

To use the Sentry target, simply add it an extension in the NLog.config file and place the NLog.Targets.Sentry.dll in the same location as the NLog.dll & NLog.config files.

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <extensions>
    <add assembly="NLog.Targets.Sentry" />
  </extensions>

  <targets>
    <target name="Sentry" type="Sentry" dsn="<your sentry dsn>"/>
  </targets>

  <rules>
    <logger name="*"  appendTo="Sentry" minLevel="Error"/>
  </rules>
</nlog>

The package is also available through NuGet as "NLog.Targets.Sentry".

About

NLog Sentry is a custom target for NLog enabling you to send logging messages to the Sentry logging service.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • C# 100.0%