Taking some pain out of Python logging
1–5 of 5 posts
Re: Taking some pain out of Python logging
#2Re: Taking some pain out of Python logging
#3Presumably with this method you can't selectively increase and decrease log levels for different components? That can be really useful in a large system where you don't want to generate several gigs of logging to sift through all the time, but sometimes you do want that extra detail to track down a tricky bug.
In the examples, I set the log level to INFO for instance.
Re: Taking some pain out of Python logging
#4It needs to run under windows so hardcoding it to use syslog wouldn't make much sense, though I suppose the defaults per platform could be better.
Also, why is it important how Twisted does it? I don't see why one would use Twisted logging now that it exists in the stdlib.
Still I did enjoy the tips on using the syslog with python.
Re: Taking some pain out of Python logging
#5Also, the maintainer of the module, Vinay Sajip, is on Stack Overflow and regularly answers logging questions.