On 02/24/10 01:59 PM, Virginia Wray wrote: ... > The other issue that neither of the syslog facilities can meet is the > need to log at more granular levels in components > within applications. Syslog defines the level of logging at the > application level, and that can't be modified within > components of the application, which is something we want to be able to > do within the installer. > > If anyone has any comments or questions about this, please let me know.
Is the intent to use syslog specifically, or (hopefully) use the python logging module in combination with the sysloghandler? I'd strongly suggest using the python logging module as that allows you to choose syslog or anything else you want for output, as well as provide your own custom log handling. As a bonus, it's also thread-safe... Cheers, -- Shawn Walker