I am trying to use a config file for configure Python Logging, but also adding handlers after the dict config has been loaded. SO my config file is like
version:
Ohh I figure it out. What I need to do is
formatter =logging.Formatter(log_config_dict['formatters']['plain_formatter']['format']) fhandler1.setFormatter(formatter)
So, I need to create a Formatter object.