NLog is a logging framework in .Net you can download for free. Sentinel is a free NLog viewer available from CodePlex. First, you need to download and install them first. This is pretty straightforward.



Here's an example of how you can configure it to send log to the viewer. Double click on NLog.config to open it up in the editor and paste the following codes. You can configure the viewer to listen to a remote machine. For this demo, we just use 127.0.0.1 which is the local IP. More detail of configuration file setup is available from NLog.
<?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"> <targets async="true"> <target xsi:type="NLogViewer" name="viewer" address="udp://127.0.0.1:9999"/> </targets> <rules> <logger name="*" minlevel="Trace" writeTo="file" /> <logger name="*" minlevel="Trace" writeTo="viewer" /> </rules> </nlog>


Now, let's punch in some code to run and see how the log entries show up in the viewer.
using System; using System.Collections.Generic; using System.Linq; using System.Text; using NLog; namespace LoggingSample { class Program { public static Logger logger = LogManager.GetCurrentClassLogger(); static void Main(string[] args) { for (int i = 0; i < 100; i++) { logger.Trace("Number: " + i.ToString()); } } } }

Here's how it looks like in the viewer. If you want to see how message is pushed down to the viewer, increase the loop and see it in action.
Happy Coding!!!