Browse Source

corrected the format string for logger

Helmut Pozimski 11 năm trước cách đây
mục cha
commit
90e549dc9e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      stdd

+ 1 - 1
stdd

@@ -93,7 +93,7 @@ else:
 syslog_handler = logging.handlers.SysLogHandler("/dev/log")
 console_handler = logging.StreamHandler()
 
-formatter = logging.Formatter("%(asctime)s - %(name)s - %(message)s")
+formatter = logging.Formatter("%%(name)s:  %(message)s")
 
 syslog_handler.setFormatter(formatter)
 console_handler.setFormatter(formatter)