NET Logging Library
Logging to an Isolated HTML
Basic Tasks > Logging to an Isolated HTML

The Isolated File target is used to log to an HTML file in isolated storage. 

 

It has these properties that can be configured:

 

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

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