diff options
Diffstat (limited to 'pylog/onaplogging')
-rw-r--r-- | pylog/onaplogging/logWatchDog.py | 14 | ||||
-rw-r--r-- | pylog/onaplogging/mdcformatter.py | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/pylog/onaplogging/logWatchDog.py b/pylog/onaplogging/logWatchDog.py index e0673e3..154dc41 100644 --- a/pylog/onaplogging/logWatchDog.py +++ b/pylog/onaplogging/logWatchDog.py @@ -39,14 +39,14 @@ class FileEventHandlers(FileSystemEventHandler): try: if event.src_path == self.filepath: newConfig = _yaml2Dict(self.filepath) - print ("reload logging configure file %s" % event.src_path) + print("reload logging configure file %s" % event.src_path) config.dictConfig(newConfig) self.currentConfig = newConfig - except Exception as e: - traceback.print_exc(e) - print ("Reuse the old configuration to avoid this " - "exception terminate program") + except Exception: + traceback.print_exc() + print("Reuse the old configuration to avoid this" + "exception terminate program") if self.currentConfig: config.dictConfig(self.currentConfig) @@ -84,8 +84,8 @@ def _yamlConfig(filepath=None, watchDog=None): # here we keep the correct configuration for reusing event_handler.currentConfig = dictConfig - except Exception as e: - traceback.print_exc(e) + except Exception: + traceback.print_exc() def patch_loggingYaml(): diff --git a/pylog/onaplogging/mdcformatter.py b/pylog/onaplogging/mdcformatter.py index f63ec94..253420d 100644 --- a/pylog/onaplogging/mdcformatter.py +++ b/pylog/onaplogging/mdcformatter.py @@ -114,7 +114,7 @@ class MDCFormatter(logging.Formatter): return s except KeyError as e: - print ("The mdc key %s format is wrong" % e.message) + print("The mdc key %s format is wrong" % e.message) except Exception: raise |