From 883980d345de7f4eeec623ca9e3e40034e7a3692 Mon Sep 17 00:00:00 2001 From: Timothee Guerin Date: Mon, 18 Jun 2018 12:59:28 -0700 Subject: [PATCH] Suppress msrest warnings (#611) --- aztk/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aztk/__init__.py b/aztk/__init__.py index ca211f3f..df85d02a 100644 --- a/aztk/__init__.py +++ b/aztk/__init__.py @@ -5,3 +5,6 @@ logging.getLogger("azure.storage").setLevel(logging.CRITICAL) # msrestazure logs warning for keyring logging.getLogger("msrestazure").setLevel(logging.CRITICAL) + +# msrest +logging.getLogger("msrest").setLevel(logging.CRITICAL)