Improve logs around running docker (#2261)

This commit is contained in:
Ayaz Salikhov
2025-03-23 11:09:53 +00:00
committed by GitHub
parent 28070e6022
commit bc3baf8ad8
5 changed files with 14 additions and 13 deletions

View File

@@ -29,7 +29,7 @@ def http_client() -> requests.Session:
def docker_client() -> docker.DockerClient:
"""Docker client configured based on the host environment"""
client = docker.from_env()
LOGGER.info(f"Docker client created: {client.version()}")
LOGGER.debug(f"Docker client created: {client.version()}")
return client