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