I\'m currently working on a python project and I set up logging using a config file. It has already worked and was logging my messages as wanted.
But then, after rearran
Try to replace
logging.config.fileConfig('../logging.conf', disable_existing_loggers=False)
with this
logging.config.fileConfig('logging.conf', disable_existing_loggers=False)
Not sure, but probably your logging.conf is in your current working directory, and with the .. the file cannot be found.
logging.conf
..