From: Mark Hatle Date: Wed, 26 Jul 2017 15:20:34 +0000 (-0500) Subject: bitbake: lib/bb/utils.py: Add missing debug level X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c6c1823ef2b410a42ef5b08765d45e7fd1c1efec;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake: lib/bb/utils.py: Add missing debug level (Bitbake rev: a0cd748d2f830a305da086eff3462875f64f2a70) Signed-off-by: Mark Hatle Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 6a44db57d74..8550af34ae8 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -1502,7 +1502,7 @@ def export_proxies(d): def load_plugins(logger, plugins, pluginpath): def load_plugin(name): - logger.debug('Loading plugin %s' % name) + logger.debug(1, 'Loading plugin %s' % name) fp, pathname, description = imp.find_module(name, [pluginpath]) try: return imp.load_module(name, fp, pathname, description) @@ -1510,7 +1510,7 @@ def load_plugins(logger, plugins, pluginpath): if fp: fp.close() - logger.debug('Loading plugins from %s...' % pluginpath) + logger.debug(1, 'Loading plugins from %s...' % pluginpath) expanded = (glob.glob(os.path.join(pluginpath, '*' + ext)) for ext in python_extensions)