From 3f97feccee01129b9d0c4c416af48603622e8404 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Wed, 21 Apr 2021 11:53:29 +0200 Subject: [PATCH] packaging: add debug for build_complete query check Signed-off-by: Kyr Shatskyy --- teuthology/packaging.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teuthology/packaging.py b/teuthology/packaging.py index 14a6082903..1e62eef941 100644 --- a/teuthology/packaging.py +++ b/teuthology/packaging.py @@ -991,6 +991,7 @@ def build_complete(self): ) build_url = urljoin(self.query_url, path) + log.debug(f'Querying {build_url}...') try: resp = requests.get(build_url) resp.raise_for_status()