-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migration of logging handlers to log4net (#69) #73
Conversation
args[0] = args[0].ToLower(); | ||
if (args[0] == "install") | ||
String command = args[0].ToLower(); | ||
if (command == "install") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The solution occasionally adds the refactoring of the commands handling.
It needs to be reworked to have a proper merge with https://github.com/kohsuke/winsw
TODOs: Migrate EventLogs to log4net Delegate exceptions handling to log4net Allows setting up log levels from ServiceDescriptor (?) Migrate STDERR/STDOUT logs to log4net (?) Support XML configurations of log4net loggers Related to winsw#69 Signed-off-by: Oleg Nenashev o.v.nenashev@gmail.com Signed-off-by: Oleg Nenashev <o.v.nenashev@gmail.com>
a1466cd
to
98268b2
Compare
Merging the basic logging to allow the usage of |
Migration of logging handlers to log4net (#69)
@oleg-nenashev We would like to enable sending all logs to Windows Event Viewer. Would Adding support for the above features |
@aminjam I doubt log4net already allows configuring everything in |
DONE:
TODOs:
Signed-off-by: Oleg Nenashev o.v.nenashev@gmail.com