diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-07 14:46:53 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-07 14:50:27 +0000 |
commit | ded83ffc3bd86553c9b540795660985905c925ba (patch) | |
tree | c4e5247801195ac20f7e0a4a5a3e7ead1a351d10 /bitbake/lib | |
parent | d7eebbe9dbf0d790d4af93466f5c27127cae0999 (diff) | |
download | openembedded-core-ded83ffc3bd86553c9b540795660985905c925ba.tar.gz openembedded-core-ded83ffc3bd86553c9b540795660985905c925ba.tar.bz2 openembedded-core-ded83ffc3bd86553c9b540795660985905c925ba.zip |
bitbake/fetch2: Match Fetcher log domain to that in bb.msg
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index cf9456b758..282713f40f 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py @@ -35,7 +35,7 @@ from bb import utils __version__ = "2" -logger = logging.getLogger("BitBake.Fetch") +logger = logging.getLogger("BitBake.Fetcher") class BBFetchException(Exception): """Class all fetch exceptions inherit from""" |