mirror of
https://github.com/archlinux-jerry/buildbot
synced 2024-11-22 04:50:41 +08:00
utils: change notify level to info
This commit is contained in:
parent
7f807b3197
commit
82cf5c7c14
1 changed files with 3 additions and 7 deletions
10
utils.py
10
utils.py
|
@ -285,11 +285,8 @@ def configure_logger(logger, format='%(asctime)s - %(name)-18s - %(levelname)s -
|
|||
return fmtr
|
||||
|
||||
logger.setLevel(logging.DEBUG)
|
||||
fnotify = cnotify = False
|
||||
fnotify = True if enable_notify and logfile else False
|
||||
cnotify = True if enable_notify and (not logfile) else False
|
||||
fformatter = ExceptionFormatter(fmt=format, notify=fnotify)
|
||||
cformatter = ExceptionFormatter(fmt=format, notify=cnotify)
|
||||
fformatter = ExceptionFormatter(fmt=format, notify=False)
|
||||
cformatter = ExceptionFormatter(fmt=format, notify=True)
|
||||
logging.addLevelName(49, 'Exception')
|
||||
# create file handler
|
||||
if logfile:
|
||||
|
@ -311,7 +308,6 @@ def configure_logger(logger, format='%(asctime)s - %(name)-18s - %(levelname)s -
|
|||
assert type(consolelog) is str
|
||||
cfh = logging.FileHandler(consolelog)
|
||||
cfh.setLevel(level)
|
||||
cfhformatter = ExceptionFormatter(fmt=format, notify=False)
|
||||
cfh.setFormatter(cfhformatter)
|
||||
cfh.setFormatter(cformatter)
|
||||
logger.addHandler(cfh)
|
||||
# for client.printlog
|
||||
|
|
Loading…
Reference in a new issue