diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-11 12:14:20 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-11 12:14:20 +0000 |
commit | ea70c4362fdb81bc9467975c145c48196c45e3af (patch) | |
tree | d56f6e3f1e03c89d73654a31e3cf464b5a507ee0 /bitbake/lib | |
parent | 7f30131faaa5e3fdb1191c9da95c5683cefafeb5 (diff) | |
download | poky-ea70c4362fdb81bc9467975c145c48196c45e3af.tar.gz |
bitbake/fetch2: Ensure failed fetch attempts are logged in the debug logs
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 6 |
1 files 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): | |||
451 | os.symlink(ud.localpath, origud.localpath) | 451 | os.symlink(ud.localpath, origud.localpath) |
452 | return ud.localpath | 452 | return ud.localpath |
453 | 453 | ||
454 | except bb.fetch2.BBFetchException: | 454 | except bb.fetch2.BBFetchException as e: |
455 | logger.debug(1, "Mirror fetch failure for url %s (original url: %s)" % (newuri, origud.url)) | 455 | logger.debug(1, "Mirror fetch failure for url %s (original url: %s)" % (newuri, origud.url)) |
456 | logger.debug(1, str(e)) | ||
456 | try: | 457 | try: |
457 | if os.path.isfile(ud.localpath): | 458 | if os.path.isfile(ud.localpath): |
458 | bb.utils.remove(ud.localpath) | 459 | bb.utils.remove(ud.localpath) |
@@ -894,7 +895,8 @@ class Fetch(object): | |||
894 | m.build_mirror_data(u, ud, self.d) | 895 | m.build_mirror_data(u, ud, self.d) |
895 | localpath = ud.localpath | 896 | localpath = ud.localpath |
896 | 897 | ||
897 | except BBFetchException: | 898 | except BBFetchException as e: |
899 | logger.debug(1, str(e)) | ||
898 | # Remove any incomplete fetch | 900 | # Remove any incomplete fetch |
899 | if os.path.isfile(ud.localpath): | 901 | if os.path.isfile(ud.localpath): |
900 | bb.utils.remove(ud.localpath) | 902 | bb.utils.remove(ud.localpath) |