aboutsummaryrefslogtreecommitdiffstats
path: root/rrs/tools/common.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2018-03-01 17:15:00 +1300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2018-05-04 23:57:53 +1200
commit034d66ab5aae4c002f34289b369600b74ab4eca5 (patch)
treeb952d2d84e79a00f3f4fd7efa282272e68da1e6b /rrs/tools/common.py
parent4ea3834033fb502e7e10ff54d883ea9179eac99c (diff)
downloadopenembedded-core-contrib-034d66ab5aae4c002f34289b369600b74ab4eca5.tar.gz
rrs/tools: print debug message when parsing recipes
Without this it's not clear what's happening if debug mode is enabled and you are waiting for the parsing step. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'rrs/tools/common.py')
-rw-r--r--rrs/tools/common.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/rrs/tools/common.py b/rrs/tools/common.py
index 5b720a1e46..0f34d8876c 100644
--- a/rrs/tools/common.py
+++ b/rrs/tools/common.py
@@ -121,6 +121,7 @@ def load_recipes(layerbranch, bitbakepath, fetchdir, settings, logger,
recipes = []
for fn in recipe_files:
try:
+ logger.debug('Parsing %s' % fn)
if hasattr(tinfoil, 'parse_recipe_file'):
data = tinfoil.parse_recipe_file(fn, appends=False, config_data=d)
else: