From 1ea3629b96c560d596db82b86d5254cd0625aac3 Mon Sep 17 00:00:00 2001 From: David Farkas Date: Wed, 21 Feb 2018 16:01:59 +0100 Subject: [PATCH] Silenc urllib3 library log messages --- api/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/config.py b/api/config.py index 21c77c8b5..63b970c94 100644 --- a/api/config.py +++ b/api/config.py @@ -23,7 +23,7 @@ logging.getLogger('requests').setLevel(logging.WARNING) # silence Requests library logging.getLogger('paste.httpserver').setLevel(logging.WARNING) # silence Paste library logging.getLogger('elasticsearch').setLevel(logging.WARNING) # silence Elastic library - +logging.getLogger('urllib3').setLevel(logging.WARNING) # silence urllib3 library # NOTE: Keep in sync with environment variables in sample.config file. DEFAULT_CONFIG = {