Re: Multiple calls to logging.config.fileConfig

2006-10-07 Thread Vinay Sajip
logging.config.fileConfig() does not do incremental configuration - it replaces the existing configuration with the configuration in the file passed to fileConfig. While this might not be too useful for your current needs, the present behaviour is by design...fileConfig is meant to choose between o

Multiple calls to logging.config.fileConfig

2006-10-05 Thread Almad
Hi, our applications can have plugins as subpackages and I'd like to allow them to use their own logger as well as it's configuration. I thought that best way will be their own configuration file passed to fileConfig. However, I run into problems... 1) It seems that I cannot refer to something f