diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2011-09-19 09:58:41 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-20 22:24:09 +0100 |
commit | 35fdd5a1954a1bb678f5d747a9154218fd4b82f5 (patch) | |
tree | 8105dbd96160a8f7bdf01875bb9f152e39083bf9 /bitbake/lib/bb | |
parent | 9e4dc60c7590bba50dc3881989f2f3066dc89c1e (diff) | |
download | poky-35fdd5a1954a1bb678f5d747a9154218fd4b82f5.tar.gz |
fetch2/git: fix logger.debug
* logging/logger typo was fixed in 38a598731b49c8a0ba0ede570adc33eb1e848235
but debug level is still missing
(Bitbake rev: 9de432fe2348cdbc93037bb49abb508d1fd38336)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index 275536fc9f..26236b81bc 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py | |||
@@ -280,7 +280,7 @@ class Git(FetchMethod): | |||
280 | # Check if we have the rev already | 280 | # Check if we have the rev already |
281 | 281 | ||
282 | if not os.path.exists(ud.clonedir): | 282 | if not os.path.exists(ud.clonedir): |
283 | logger.debug("GIT repository for %s does not exist in %s. \ | 283 | logger.debug(1, "GIT repository for %s does not exist in %s. \ |
284 | Downloading.", url, ud.clonedir) | 284 | Downloading.", url, ud.clonedir) |
285 | self.download(None, ud, d) | 285 | self.download(None, ud, d) |
286 | if not os.path.exists(ud.clonedir): | 286 | if not os.path.exists(ud.clonedir): |