aboutsummaryrefslogtreecommitdiff
path: root/src/Logging.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-01 16:04:41 +0100
committerGravatar jesopo2018-10-01 16:04:41 +0100
commitcf83c310dd83b251dc52abd71687b3d8ccad7a81 (patch)
tree98cd53c83b9afdd0f651f6b474ca097ed5fb6f34 /src/Logging.py
parentAdd call_unsafe functions to EventManager.EventHook, to not swallow errors on (diff)
signature
Change trace logging level from `5` to `logging.DEBUG-1`
Diffstat (limited to 'src/Logging.py')
-rw-r--r--src/Logging.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Logging.py b/src/Logging.py
index 1c33df94..6ea6efe8 100644
--- a/src/Logging.py
+++ b/src/Logging.py
@@ -1,7 +1,7 @@
import logging, logging.handlers, os, sys, time
LEVELS = {
- "trace": 5,
+ "trace": logging.DEBUG-1,
"debug": logging.DEBUG,
"info": logging.INFO,
"warn": logging.WARN,