From ded83ffc3bd86553c9b540795660985905c925ba Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 7 Feb 2011 14:46:53 +0000 Subject: [PATCH] bitbake/fetch2: Match Fetcher log domain to that in bb.msg Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"""