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

Latest commit

 

History

History
28 lines (21 loc) · 902 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 902 Bytes

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".