Skip to content

Commit bec252f

Browse files
committed
Use debug level for logging truststore disablement on <3.10
1 parent 540b66a commit bec252f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pip/_internal/cli/index_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
def _create_truststore_ssl_context() -> Optional["SSLContext"]:
2929
if sys.version_info < (3, 10):
30-
logger.warning("Disabling truststore because Python version isn't 3.10+")
30+
logger.debug("Disabling truststore because Python version isn't 3.10+")
3131
return None
3232

3333
try:

0 commit comments

Comments
 (0)