From 40a5524d65dd1c9c1c0798e41440c92b870fd111 Mon Sep 17 00:00:00 2001 From: tvalentyn Date: Mon, 30 Sep 2024 14:18:21 -0700 Subject: [PATCH] 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 43542dd99b679..dbb227802925b 100644 --- a/sdks/python/apache_beam/transforms/environments.py +++ b/sdks/python/apache_beam/transforms/environments.py @@ -311,14 +311,14 @@ def __init__( ): 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))