NET Logging Library
Logging to Chainsaw
Basic Tasks > Logging to Chainsaw

Chainsaw is an application that can receive real time logging messages.  In order to use the Chainsaw, the free Chainsaw application must be downloaded.  http://logging.apache.org/chainsaw/

 

It has these properties that can be configured:

 

//Example runtime configuration, can also use log.config, app.config, or web.config
Log.ResetConfiguration();
ChainSawTarget target = new ChainSawTarget();
target.Address = "udp://localhost:8080";
target.NetworkType = NetworkType.UDP;
Log.Config.Targets.Add(target);

Log.Debug("This is a test");