diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-11 16:16:51 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-11 16:16:51 +0000 |
commit | a72d49478e57b05b99cb1b3beec62a9e79a24e7a (patch) | |
tree | 021c96a611cc1b7071d525cebfcac512ac8140de /bitbake/lib | |
parent | 20afb21a375b6a5f0d4ff6e269eeee121d6f087a (diff) | |
download | openembedded-core-contrib-a72d49478e57b05b99cb1b3beec62a9e79a24e7a.tar.gz |
bitbake/fetch2: Add some debug output so its clear when PREMIRRORS, upstream and MIRRORS are being used
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 06facbcf467..f4e9ea96fad 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py @@ -886,6 +886,7 @@ class Fetch(object): if not m.need_update(u, ud, self.d): localpath = ud.localpath elif m.try_premirror(u, ud, self.d): + logger.debug(1, "Trying PREMIRRORS") mirrors = mirror_from_string(bb.data.getVar('PREMIRRORS', self.d, True)) localpath = try_mirrors(self.d, ud, mirrors, False) @@ -894,6 +895,7 @@ class Fetch(object): if not localpath and m.need_update(u, ud, self.d): try: + logger.debug(1, "Trying Upstream") m.download(u, ud, self.d) if hasattr(m, "build_mirror_data"): m.build_mirror_data(u, ud, self.d) @@ -904,6 +906,7 @@ class Fetch(object): # Remove any incomplete fetch if os.path.isfile(ud.localpath): bb.utils.remove(ud.localpath) + logger.debug(1, "Trying MIRRORS") mirrors = mirror_from_string(bb.data.getVar('MIRRORS', self.d, True)) localpath = try_mirrors (self.d, ud, mirrors) |