From b451c813484387032171b87a66fd2341aa065674 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Thu, 19 Jul 2018 13:01:35 +0200 Subject: [PATCH] ec2: Silence both boto & boto3 during bootstrapping --- bootstrapvz/providers/ec2/tasks/connection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrapvz/providers/ec2/tasks/connection.py b/bootstrapvz/providers/ec2/tasks/connection.py index dbf4973..043cc72 100644 --- a/bootstrapvz/providers/ec2/tasks/connection.py +++ b/bootstrapvz/providers/ec2/tasks/connection.py @@ -12,6 +12,7 @@ class SilenceBotoDebug(Task): # Regardless of of loglevel, we don't want boto debug stuff, it's very noisy import logging logging.getLogger('boto').setLevel(logging.INFO) + logging.getLogger('boto3').setLevel(logging.INFO) class GetCredentials(Task):