I have a logging configuration file that I load via
logging.config.fileConfig.
The configuration file, configures a FileHandler to log to file.
I wish to initialize the FileHandler to the path
os.environ['APP_DATA'].
However, I don't know how to configure anything other than a static
path.


I also don't know how to modify the initialization after loading via
fileConfig.
For example, if I could do something like this then I could make it
work for me.
logging.config.fileConfig('logging.conf')
for logger in enumerate_all_loggers():
    logger.addHandler( FileHandler(logfilename, mode='w'))

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to