Skip to content

Commit

Permalink
Use debug level for logging truststore disablement on <3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Jul 9, 2024
1 parent 3ac2c6a commit 0138f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pip/_internal/cli/index_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

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

try:
Expand Down

0 comments on commit 0138f95

Please sign in to comment.