diff options
Diffstat (limited to 'voctocore/lib')
-rw-r--r-- | voctocore/lib/loghandler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/voctocore/lib/loghandler.py b/voctocore/lib/loghandler.py index 7bfc669..d2fcb13 100644 --- a/voctocore/lib/loghandler.py +++ b/voctocore/lib/loghandler.py @@ -38,6 +38,6 @@ class LogFormatter(logging.Formatter): class LogHandler(logging.StreamHandler): - def __init__(self, docolor): + def __init__(self, docolor, timestamps): super().__init__() - self.setFormatter(LogFormatter(docolor)) + self.setFormatter(LogFormatter(docolor,timestamps)) |