From 8d39a9d204b24f4f132a9e4d732531b584a910fa Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 10 Jan 2011 12:17:14 +0000 Subject: [PATCH] fetch/__init__.py: Add missing debug level argument Signed-off-by: Richard Purdie --- lib/bb/fetch/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/fetch/__init__.py b/lib/bb/fetch/__init__.py index 91729f684ba..f7153ebce96 100644 --- a/lib/bb/fetch/__init__.py +++ b/lib/bb/fetch/__init__.py @@ -329,7 +329,7 @@ def checkstatus(d, urls = None): for u in urls: ud = urldata[u] m = ud.method - logger.debug("Testing URL %s", u) + logger.debug(1, "Testing URL %s", u) # First try checking uri, u, from PREMIRRORS mirrors = mirror_from_string(bb.data.getVar('PREMIRRORS', d, True)) ret = try_mirrors(d, u, mirrors, True) -- 2.47.3