up vote 6 down vote favorite
share [g+] share [fb]

Does anyone have any suggestions for a Gui for editing the log4net config files. We have people in the field who need to be able to increase, decrease, or specialize logging but don't have the background to mess in the XML.

link|improve this question

63% accept rate
they can't edit a well commented xml file? – dotjoe Oct 30 '09 at 18:45
dotjoe: you must be confusing developers with users. A common error I often make myself. – Chasler Oct 30 '09 at 19:45
feedback

3 Answers

I used this http://www.codeproject.com/KB/cs/Log4netEditor.aspx a few years ago to provide a simple GUI to log4net. I haven't used it recently so I don't know if it's still working with recent releases of log4net.

link|improve this answer
Thanks. I had looked at that, but it didn't really simplify things any more than the XML. It just covered the brackets. – Chasler May 7 '09 at 16:16
feedback

It's not that hard to make a simple .NET Winforms app that can read a .xml file and allow the user to edit it. As it will only be used by users with specific needs you can just put in the necessary drop-down menus, ticks boxes or edit boxes to allow then to change the values needed.

You can then do some basic error/range checking to make sure they can't enter invalid values.

link|improve this answer
feedback

I'm looking for a similar GUI. The Log4net GUI Configuration Tool from CodeProject is just an XML editor and doesn't really simplify the configuration.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.