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>
This commit is contained in:
Paul Eggleton 2018-03-01 17:15:00 +13:00
parent 4ea3834033
commit 034d66ab5a

View File

@ -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: