Skip to content

Commit

Permalink
Merge pull request #32602 from apache/tvalentyn-patch-2
Browse files Browse the repository at this point in the history
Reduce the logging severity to remove verbose logging.
  • Loading branch information
liferoad authored Sep 30, 2024
2 parents 9b85f71 + 40a5524 commit 111f4c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sdks/python/apache_beam/transforms/environments.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down

0 comments on commit 111f4c3

Please sign in to comment.