KeyError: 'formatters' in logging module

5.9k Views Asked by At

I have been having trouble loading a logging config file. This is my first time using logging, and I am basing it off another project. Here's what I have:

logging.config.fileConfig('C:/....../FX_Base/trading/logging.conf',
                          disable_existing_loggers=False)
logger = logging.getLogger('FX_Base.trading.trading')

Here is the full traceback:

Traceback (most recent call last):
File "C:/............./FX_Base/trading/trading.py", line 57, in <module>
    disable_existing_loggers=False)
  File "C:\.............Python\Python35\lib\logging\config.py", line 76, in fileConfig
    formatters = _create_formatters(cp)
  File "C:\.....\Python\Python35\lib\logging\config.py", line 109, in _create_formatters
    flist = cp["formatters"]["keys"]
  File "C:\.......\Python\Python35\lib\configparser.py", line 956, in __getitem__
    raise KeyError(key)
KeyError: 'formatters' 

I don't understand what the issue is. I've searched the site and it seems that the issue might be in finding the directory, but I have it pretty specific.

0

There are 0 best solutions below