Description
NLog.Targets.Pushover is a custom target for NLog enabling you to send logging messages to the Pushover service
NLog.Targets.Pushover alternatives and similar packages
Based on the "Logging" category.
Alternatively, view NLog.Targets.Pushover alternatives based on common mentions on social networks and blogs.
-
Semantic Logging Application Block (SLAB)
DISCONTINUED. Supporting semantic/structured logging for .NET -
ExcelDna.Diagnostics.Serilog
Integrate Excel-DNA Diagnostic Logging with your Serilog logging pipeling within your Excel-DNA add-in -
Ac682.Extensions.Logging.Console
a provider for Microsoft.Extensions.Logging which provides a colored console logger. -
BugSnag
Logs errors. Includes useful diagnostic info like stack trace, session, release, etc. Has a free tier. [Free for OSS][$] -
Essential Diagnostics
Extends the inbuilt features of System.Diagnostics namespace to provide flexible logging
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of NLog.Targets.Pushover or a related project?
README
NLog.Targets.Pushover
NLog.Targets.Pushover is a custom target for NLog enabling you to send logging messages to the Pushover service
Configuration
To use the Pushover target, simply add it as extension in the NLog.config file and place the NLog.Targets.Pushover.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.Pushover" />
</extensions>
<targets>
<target name="pushover" xsi:type="Pushover" layout="${logger}::${message}"
applicationKey="azGDORePK8gMaC0QOYAMyEEuzJnyUi"
userOrGroupName="uQiRzpo4DXghDmr9QzzfQu27cmVRsG" />
</targets>
<rules>
<logger name="*" minlevel="Error" writeTo="pushover" />
</rules>
</nlog>
For more configuration options see the wiki page
This library is available as NuGet package.