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

The Isolated File target is used to log to a CSV 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();   
IsolatedCsvTarget target = new IsolatedCsvTarget("log.csv");       
Log.Config.Targets.Add(target);

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