Browse Source

corrected a small typo calling the logger object

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

+ 1 - 1
stdd

@@ -87,7 +87,7 @@ if config.syslog_level == "debug":
 elif config.syslog_level == "error":
 	logger.setLevel(logging.ERROR)
 else:
-	logget.setLevel(logging.INFO)
+	logger.setLevel(logging.INFO)
 
 syslog_handler = logging.handlers.SysLogHandler("/dev/log")
 console_handler = logging.StreamHandler()