From 41006c36a5dbaebb92500e0e12b0d9a7bae827a6 Mon Sep 17 00:00:00 2001 From: Thomas LEVEIL Date: Sat, 25 Feb 2017 02:16:38 +0100 Subject: [PATCH] TESTS: adjust logging levels --- test/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/conftest.py b/test/conftest.py index fcff6ea..7673e2c 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -17,7 +17,7 @@ from requests.packages.urllib3.util.connection import HAS_IPV6 logging.basicConfig(level=logging.INFO) logging.getLogger('backoff').setLevel(logging.INFO) -logging.getLogger('DNS').setLevel(logging.DEBUG) +logging.getLogger('DNS').setLevel(logging.INFO) logging.getLogger('requests.packages.urllib3.connectionpool').setLevel(logging.WARN) CA_ROOT_CERTIFICATE = os.path.join(os.path.dirname(__file__), 'certs/ca-root.crt') @@ -287,7 +287,7 @@ def wait_for_nginxproxy_to_be_ready(): container = containers[0] for line in container.logs(stream=True): if "Watching docker events" in line: - logging.debug("nginx-proxy ready") + logging.info("nginx-proxy ready") break def find_docker_compose_file(request):