Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nlog/nlog.wcf

NLog target for sending LogEvents over WCF
https://github.com/nlog/nlog.wcf

csharp dotnet nlog nlog-target servicemodel wcf

Last synced: 10 days ago
JSON representation

NLog target for sending LogEvents over WCF

Awesome Lists containing this project

README

        

# NLog.WCF
NLog [WCF target](https://github.com/NLog/NLog/wiki/LogReceiverService-target) for sending LogEvents to NLog Receiver Service (using WCF or Web Services)

[![Version](https://badge.fury.io/nu/NLog.WCF.svg)](https://www.nuget.org/packages/NLog.WCF)
[![AppVeyor](https://img.shields.io/appveyor/ci/nlog/NLog-WCF/master.svg)](https://ci.appveyor.com/project/nlog/NLog-WCF/branch/master)

### How to install

1) Install the package

`Install-Package NLog.WCF` or in your csproj:

```xml

```

2) Add to your nlog.config:

```xml



```

Alternative register from code using [fluent configuration API](https://github.com/NLog/NLog/wiki/Fluent-Configuration-API):

```xml
LogManager.Setup().SetupExtensions(ext => {
ext.RegisterTarget();
});
```

See also [NLog Wiki](https://github.com/NLog/NLog/wiki/LogReceiverService-target) for available options and examples.