From ea70c4362fdb81bc9467975c145c48196c45e3af Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 11 Feb 2011 12:14:20 +0000 Subject: bitbake/fetch2: Ensure failed fetch attempts are logged in the debug logs Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) -- cgit v1.2.3-54-g00ecf