summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2011-09-19 09:58:41 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-19 12:24:56 +0100
commit9de432fe2348cdbc93037bb49abb508d1fd38336 (patch)
treecd5e9f8fc9a1e776b4a4ee77ad23bbd189f259c2
parent5896d8ff7bcf85b3bab20fc27c4c15e87f86b4d9 (diff)
downloadbitbake-9de432fe2348cdbc93037bb49abb508d1fd38336.tar.gz
fetch2/git: fix logger.debug
* logging/logger typo was fixed in 38a598731b49c8a0ba0ede570adc33eb1e848235 but debug level is still missing Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/fetch2/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch2/git.py b/lib/bb/fetch2/git.py
index 275536fc9..26236b81b 100644
--- a/lib/bb/fetch2/git.py
+++ b/lib/bb/fetch2/git.py
@@ -280,7 +280,7 @@ class Git(FetchMethod):
# Check if we have the rev already
if not os.path.exists(ud.clonedir):
- logger.debug("GIT repository for %s does not exist in %s. \
+ logger.debug(1, "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):