gowinder / NlogViewer

NlogViewer is a simple WPF-control to show NLog-logs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NlogViewer

NlogViewer is a simple WPF-control to show NLog-logs. It's heavily inspired by this blog.

##How to use?##

Add a namespace to your Window, like this:

    xmlns:nlog ="clr-namespace:NlogViewer;assembly=NlogViewer"

then add the control.

    <nlog:NlogViewer x:Name="logCtrl" /> 

To setup NlogViewer as a target, add the following to your Nlog.config.

  <extensions>
    <add assembly="NlogViewer" />
  </extensions>
  <targets>
    <target xsi:type="NlogViewer" name="ctrl" />
  </targets>
  <rules>
    <logger name="*" minlevel="Trace" writeTo="ctrl" />
  </rules>

##Nuget##

A NuGet-package is available here. It will try to install the control and a sample Nlog.config.

About

NlogViewer is a simple WPF-control to show NLog-logs.


Languages

Language:C# 98.0%Language:PowerShell 2.0%