From da79f7ba641b42e28a99d8b1b1ec78300aba322a Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Tue, 26 Nov 2024 15:44:18 +0100 Subject: [PATCH] chore: more debug info when app got skipped --- idf_build_apps/finder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/idf_build_apps/finder.py b/idf_build_apps/finder.py index 8ce9480..a199926 100644 --- a/idf_build_apps/finder.py +++ b/idf_build_apps/finder.py @@ -50,6 +50,7 @@ def _validate_app(_app: App) -> bool: # for unknown ones, we keep them to the build stage to judge if _app.build_status == BuildStatus.SKIPPED: + LOGGER.debug('=> Skipped. Reason: %s', _app.build_comment or 'Unknown') return args.include_skipped_apps return True