Switch build manager to always just WARN on boto
This commit is contained in:
parent
3daa0e6a52
commit
91b464d0de
1 changed files with 1 additions and 0 deletions
|
@ -76,4 +76,5 @@ def run_build_manager():
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
logging.basicConfig(level=logging.DEBUG, format=LOG_FORMAT)
|
logging.basicConfig(level=logging.DEBUG, format=LOG_FORMAT)
|
||||||
logging.getLogger('peewee').setLevel(logging.WARN)
|
logging.getLogger('peewee').setLevel(logging.WARN)
|
||||||
|
logging.getLogger('boto').setLevel(logging.WARN)
|
||||||
run_build_manager()
|
run_build_manager()
|
||||||
|
|
Reference in a new issue