From 5453784787c7213457cb35710a3f6094bfbdffd3 Mon Sep 17 00:00:00 2001 From: Park Wonjae Date: Fri, 21 Aug 2026 11:08:41 +0900 Subject: [PATCH] fix: keep SPDX extraction failures out of console --- src/fosslight_source/run_spdx_extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fosslight_source/run_spdx_extractor.py b/src/fosslight_source/run_spdx_extractor.py index 392db613..0ed182d4 100644 --- a/src/fosslight_source/run_spdx_extractor.py +++ b/src/fosslight_source/run_spdx_extractor.py @@ -22,5 +22,5 @@ def get_spdx_downloads(file_path: str) -> list[str]: for word in find_word.findall(mmap_obj): results.append(word.decode('utf-8')) except Exception as ex: - logger.warning(f"Failed to extract SPDX download location. {file_path}, {ex}") + logger.debug(f"Failed to extract SPDX download location. {file_path}, {ex}") return results