Skip to content

Commit 43980d7

Browse files
committed
Fix logging format
1 parent 950c5a5 commit 43980d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hubble/daemon.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def logging_setup():
7171
log.setLevel(logging.DEBUG)
7272

7373
# Logging format
74-
formatter = logging.Formatter('[%(asctime)s] [%(name)s] [%(levelname)s] [%(message)s]', datefmt='%Y/%m/%d %H:%M:%S')
74+
formatter = logging.Formatter('[%(asctime)s] [%(name)s] [%(levelname)s]: %(message)s', datefmt='%Y/%m/%d %H:%M:%S')
7575

7676
# Log to file
7777
fh = logging.FileHandler('/var/log/hubble')

0 commit comments

Comments
 (0)