From: Richard Purdie Date: Fri, 22 Oct 2010 13:31:18 +0000 (+0100) Subject: bitbake/fetch: Make URL checking slightly less verbose (distracting with the sstate... X-Git-Tag: 2011-1~4188 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=535a77a9b681423e2f10744aca54858c25a03cb0;p=openembedded-core.git bitbake/fetch: Make URL checking slightly less verbose (distracting with the sstate code) Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index 5fcb9b83e2..9e425cb785 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py @@ -287,7 +287,7 @@ def checkstatus(d): for u in urldata: ud = urldata[u] m = ud.method - bb.msg.note(1, bb.msg.domain.Fetcher, "Testing URL %s" % u) + bb.msg.debug(1, bb.msg.domain.Fetcher, "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)