From bd67d3d213a1d8cede2e88915c0e850bc188ef4d Mon Sep 17 00:00:00 2001 From: xiaochn Date: Mon, 10 Feb 2025 19:37:05 +0800 Subject: [PATCH] fixed a bug where a non-existent logger level was used --- tests/compatible/srpm/srpm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/compatible/srpm/srpm.py b/tests/compatible/srpm/srpm.py index 9242fa9..eeb3e8a 100644 --- a/tests/compatible/srpm/srpm.py +++ b/tests/compatible/srpm/srpm.py @@ -54,7 +54,7 @@ class SrpmTest(Test): for line in srpms_repo.split("\n"): src_info = line.split() if len(src_info) != 3: - self.logger.debug("abnormal source rpm info line: %s" % line) + self.logger.info("abnormal source rpm info line: %s" % line) continue src_name = src_info[0].split('.')[0] version = src_info[1].split('-')[0].split(':')[-1] -- Gitee