From 3182de136bb6fc900bfb6affbc8cab3775c18926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Barroso=20Galindo?= Date: Mon, 2 Jun 2025 22:26:18 +0200 Subject: [PATCH] Better logging on weird filter terms coming from external files API --- .github/db_operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/db_operator.py b/.github/db_operator.py index 09009327c..62782cabe 100755 --- a/.github/db_operator.py +++ b/.github/db_operator.py @@ -773,7 +773,7 @@ class DatabaseBuilder: tags = self._tags.get_tags_for_file(file) for term in filter_terms: if not term: - print('WARNING! Empty term found in filter_terms', filter_terms) + print('WARNING! Empty term found in filter_terms', file, filter_terms) continue tags.append(self._tags._use_term(term))