liferoad commented on issue #35013:
URL: https://github.com/apache/beam/issues/35013#issuecomment-2912625930
How about introducing a new logging option to control the overall logging
level, e.g.,
```
from apache_beam.options.pipeline_options import PipelineOptions
class LoggingOptions(PipelineOptions):
@classmethod
def _add_argparse_args(cls, parser):
parser.add_argument(
'--log_level',
default='WARNING',
help='Set the logging level (DEBUG, INFO, WARNING, ERROR,
CRITICAL)')
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]