Skip to content

Commit 0138f95

Browse files
committed
Use debug level for logging truststore disablement on <3.10
1 parent 3ac2c6a commit 0138f95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pip/_internal/cli/index_command.py

+1-1
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)