NET Logging Library
Logging to Telnet
Basic Tasks > Logging to Telnet

The Telnet Target logs messages to a Telnet Client on a port

It has these properties that can be configured:

 

//Example runtime configuration, can also use log.config, app.config, or web.config
Log.ResetConfiguration(); 
TelnetTarget target = new TelnetTarget();  
target.Port = 230;
Log.Config.Targets.Add(target);

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