diff options
author | Darren Hart <dvhart@linux.intel.com> | 2011-05-20 16:06:14 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-27 18:27:18 +0100 |
commit | 5a4b8cef20ce22aebe87721290dd99f25d5bb686 (patch) | |
tree | 6a69a52b4c5b23e02097fb618176b174028de57f | |
parent | fd005661443b327342b9542ab42177960e1a91a9 (diff) | |
download | ast2050-yocto-poky-5a4b8cef20ce22aebe87721290dd99f25d5bb686.zip ast2050-yocto-poky-5a4b8cef20ce22aebe87721290dd99f25d5bb686.tar.gz |
fetch2/git: use logging.debug() and clarify messages
Replace a call to print() with logging.debug() and flesh out the
message to clarify the state being reported.
(Bitbake rev: 9a28f7744e2f4224e7c097b8c4c1d49731b9a47e)
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index ae44a49..35a4bfd 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py @@ -271,10 +271,13 @@ class Git(FetchMethod): # Check if we have the rev already if not os.path.exists(ud.clonedir): - print("no repo") + logging.debug("GIT repository for %s does not exist in %s. \ + Downloading.", url, ud.clonedir) self.download(None, ud, d) if not os.path.exists(ud.clonedir): - logger.error("GIT repository for %s doesn't exist in %s, cannot get sortable buildnumber, using old value", url, ud.clonedir) + logger.error("GIT repository for %s does not exist in %s after \ + download. Cannot get sortable buildnumber, using \ + old value", url, ud.clonedir) return None |