Skip to content

Commit ee628bd

Browse files
authored
Merge pull request #808 from maresb/disable-pypi-mapping-missing-warning
Convert noisy warning into debug log when PyPI package is missing from mapping
2 parents 586c456 + 0d84448 commit ee628bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conda_lock/lookup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def pypi_name_to_conda_name(name: str, mapping_url: str) -> str:
7272
if res is not None:
7373
return res
7474

75-
logger.warning(f"Could not find conda name for {cname}. Assuming identity.")
75+
logger.debug(f"Could not find conda name for {cname}. Assuming identity.")
7676
return cname
7777

7878

0 commit comments

Comments
 (0)