From: Richard Purdie Date: Mon, 7 Feb 2011 14:46:53 +0000 (+0000) Subject: bitbake/fetch2: Match Fetcher log domain to that in bb.msg X-Git-Tag: 2011-1~2474 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=ded83ffc3bd86553c9b540795660985905c925ba;p=openembedded-core.git bitbake/fetch2: Match Fetcher log domain to that in bb.msg Signed-off-by: Richard Purdie --- 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"""