diff --git a/bin/bitbake-setup b/bin/bitbake-setup
index 427a2d835..6145d66e1 100755
--- a/bin/bitbake-setup
+++ b/bin/bitbake-setup
@@ -35,7 +35,9 @@ if __name__ == "__main__":
     if __version__ != libbb_version:
         sys.exit("Bitbake core library version and program version mismatch!")
 
-logger = bb.msg.logger_create('bitbake-setup', sys.stdout)
+logger = bb.msg.logger_create('BitBake', sys.stdout)
+logger.setLevel(logging.DEBUG)
+bb.msg.init_msgconfig(True, True)
 
 # These settings can only be set in the global context
 GLOBAL_ONLY_SETTINGS = (
@@ -1409,7 +1411,7 @@ def main():
 
     # Need to re-run logger_create with color argument
     # (will be the same logger since it has the same name)
-    bb.msg.logger_create('bitbake-setup', output=sys.stdout,
+    bb.msg.logger_create('BitBake', output=sys.stdout,
                          color=args.color,
                          level=logger.getEffectiveLevel())
 
diff --git a/lib/bb/fetch/__init__.py b/lib/bb/fetch/__init__.py
index 153700dfb..fcefe5141 100644
--- a/lib/bb/fetch/__init__.py
+++ b/lib/bb/fetch/__init__.py
@@ -1816,6 +1816,10 @@ class Fetch(object):
         if localonly and cache:
             raise Exception("bb.fetch.Fetch.__init__: cannot set cache and localonly at same time")
 
+        logger.warning("Warning")
+        logger.info("Info")
+        logger.debug("Debug")
+
         if not urls:
             urls = d.getVar("SRC_URI").split()
         self.urls = urls
