shunping commented on code in PR #35387: URL: https://github.com/apache/beam/pull/35387#discussion_r2162319641
########## sdks/python/apache_beam/transforms/util.py: ########## @@ -1445,30 +1445,50 @@ class LogElements(PTransform): level: (optional) The logging level for the output (e.g. `logging.DEBUG`, `logging.INFO`, `logging.WARNING`, `logging.ERROR`). If not specified, the log is printed to stdout. + with_pane_info (bool): (optional) Whether to include element's pane info. + use_rfc3339 (bool): (optional) Whether to display timestamps in rfc3339 + format. """ class _LoggingFn(DoFn): def __init__( - self, prefix='', with_timestamp=False, with_window=False, level=None): + self, + prefix='', + with_timestamp=False, + with_window=False, + with_pane_info=False, + use_rfc3339=True, + level=None): Review Comment: Fixed. -- 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: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org