Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any Suggestions for Log4Net Configuration Gui? [closed]

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.

like image 422
Charley Rathkopf Avatar asked Mar 03 '09 19:03

Charley Rathkopf


2 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.

like image 129
Pedro Santos Avatar answered Nov 12 '22 04:11

Pedro Santos


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.

like image 36
Matt Warren Avatar answered Nov 12 '22 04:11

Matt Warren