Vincent-Woo commented on code in PR #25653: URL: https://github.com/apache/flink/pull/25653#discussion_r1847564597
########## flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/SystemOutRedirectionUtils.java: ########## @@ -40,6 +40,24 @@ public class SystemOutRedirectionUtils { private static final Logger LOG = LoggerFactory.getLogger(SystemOutRedirectionUtils.class); + @VisibleForTesting + static final String OUT_TO_LOG_TIPS = + "Tips: System.out is redirected to LOG.info as configured." + + " View the log file and search [SystemOutRedirectionUtils] for output.\n"; + + @VisibleForTesting + static final String ERR_TO_LOG_TIPS = + "Tips: System.err is redirected to LOG.error as configured." + + " View the log file and search [SystemOutRedirectionUtils] for output.\n"; + + @VisibleForTesting + static final String OUT_IGNORE_TIPS = + "Tips: System.out will be directly ignored as configured.\n"; + + @VisibleForTesting + static final String ERR_IGNORE_TIPS = + "Tips: System.err will be directly ignored as configured.\n"; Review Comment: Good idea! I dealt with it. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org