Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/fosslight_source/run_spdx_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading