From 034d66ab5aae4c002f34289b369600b74ab4eca5 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Thu, 1 Mar 2018 17:15:00 +1300 Subject: [PATCH] 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 --- rrs/tools/common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rrs/tools/common.py b/rrs/tools/common.py index 5b720a1..0f34d88 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: