bitbake/fetch2: Ensure failed fetch attempts are logged in the debug logs

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-02-11 12:14:20 +00:00
parent 7f30131faa
commit ea70c4362f
1 changed files with 4 additions and 2 deletions

View File

@ -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)