This is an automated email from the ASF dual-hosted git repository. tvalentyn pushed a commit to branch tvalentyn-patch-2 in repository https://gitbox.apache.org/repos/asf/beam.git
commit 40a5524d65dd1c9c1c0798e41440c92b870fd111 Author: tvalentyn <[email protected]> AuthorDate: Mon Sep 30 14:18:21 2024 -0700 Update environments.py Reduce spammy logs --- sdks/python/apache_beam/transforms/environments.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sdks/python/apache_beam/transforms/environments.py b/sdks/python/apache_beam/transforms/environments.py index 43542dd99b6..dbb22780292 100644 --- a/sdks/python/apache_beam/transforms/environments.py +++ b/sdks/python/apache_beam/transforms/environments.py @@ -311,14 +311,14 @@ class DockerEnvironment(Environment): ): super().__init__(capabilities, artifacts, resource_hints) if container_image: - logging.info( + logging.debug( 'Using provided Python SDK container image: %s' % (container_image)) self.container_image = container_image else: - logging.info('No image given, using default Python SDK image') + logging.debug('No image given, using default Python SDK image') self.container_image = self.default_docker_image() - logging.info( + logging.debug( 'Python SDK container image set to "%s" for Docker environment' % (self.container_image))
