forked from MirrorHub/synapse
yaml.load expects strings to be a yaml rather than file
This commit is contained in:
parent
30595b466f
commit
f91345bdb5
1 changed files with 2 additions and 1 deletions
|
@ -80,7 +80,8 @@ class LoggingConfig(Config):
|
|||
logger.addHandler(handler)
|
||||
logger.info("Test")
|
||||
else:
|
||||
logging.config.dictConfig(yaml.load(self.log_config))
|
||||
with open(self.log_config, 'r') as f:
|
||||
logging.config.dictConfig(yaml.load(f))
|
||||
|
||||
observer = PythonLoggingObserver()
|
||||
observer.start()
|
||||
|
|
Loading…
Reference in a new issue