Logging options for .NET Compact Framework

Since the first coffee meeting I have been hassling Alan to start blogging.  After migrating the user group's website across to Community Server I was able to set a blog up for him and he just submitted his first post.  One of the pain points for a number of mobile developers is what to use for logging.  Most developers end up doing their own custom solution.  At Intilecta we ripped out most of the useful bits from the Patterns and Practices Enterprise Library.  Based on what Alan has to say in his post I think I would definitely look at log4net as it seems to be quite comprehensive and it runs on the .NET Compact Framework.

Published Saturday, March 17, 2007 8:47 AM by nick

Comments

Saturday, March 17, 2007 2:42 PM by neilco

# re: Logging options for .NET Compact Framework

Creating your own logging infrastructure isn't such a pain if you use the TraceListener class from the Smart Device Framework as a base class. It works in pretty much the same way as the .NET Framework. It's even easier if you use the TextWriterTraceListener.