From: Richard Purdie Date: Fri, 11 Feb 2011 12:14:20 +0000 (+0000) Subject: bitbake/fetch2: Ensure failed fetch attempts are logged in the debug logs X-Git-Tag: 2011-1~2381 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=ea70c4362fdb81bc9467975c145c48196c45e3af;p=openembedded-core.git bitbake/fetch2: Ensure failed fetch attempts are logged in the debug logs Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index b9e145a62b..de2c6520e9 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py @@ -451,8 +451,9 @@ def try_mirrors(d, origud, mirrors, check = False): os.symlink(ud.localpath, origud.localpath) return ud.localpath - except bb.fetch2.BBFetchException: + except bb.fetch2.BBFetchException as e: logger.debug(1, "Mirror fetch failure for url %s (original url: %s)" % (newuri, origud.url)) + logger.debug(1, str(e)) try: if os.path.isfile(ud.localpath): bb.utils.remove(ud.localpath) @@ -894,7 +895,8 @@ class Fetch(object): m.build_mirror_data(u, ud, self.d) localpath = ud.localpath - except BBFetchException: + except BBFetchException as e: + logger.debug(1, str(e)) # Remove any incomplete fetch if os.path.isfile(ud.localpath): bb.utils.remove(ud.localpath)