Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce the logging severity to remove verbose logging. #32602

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading