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.
-
NLog
NLog - Advanced and Structured Logging for Various .NET Platforms -
Serilog
Simple .NET logging with fully-structured events -
Log4Net
Mirror of This is the Apache log4net logging project git repository. -
StackExchange.Exceptional
Error handler used for the Stack Exchange network -
Logary
Logs and metrics are one! Professional logging, metrics and analytics for your apps. -
Semantic Logging Application Block (SLAB)
Supporting semantic/structured logging for .NET -
Elmah MVC
Painless integration of ELMAH into ASP.NET MVC application -
ZeroLog
A high-performance, zero-allocation .NET logging library. -
NReco.Logging.File
Generic file logger for .NET Core (FileLoggerProvider) with minimal dependencies -
Sejil
Capture, view and filter your ASP.net core log events right from your app -
elmah.io
ELMAH error logger for sending errors to elmah.io. -
Serilog.Sinks.Notepad
A Serilog sink that writes log events to Notepad as text or JSON -
BugGuardian
BugGuardian: Easily track you exceptions on Azure DevOps and TFS -
Serilog.Sinks.ExcelDnaLogDisplay
A Serilog sink that writes events to Excel-DNA LogDisplay -
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. -
Essential Diagnostics
Extends the inbuilt features of System.Diagnostics namespace to provide flexible logging -
BugSnag
Logs errors. Includes useful diagnostic info like stack trace, session, release, etc. Has a free tier. [Free for OSS][$]
Access the most powerful time series database as a service
* 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.