poorbarcode commented on code in PR #127: URL: https://github.com/apache/flink-connector-pulsar/pull/127#discussion_r3969385002
########## flink-connector-pulsar-e2e-tests/src/test/resources/log4j2-test.properties: ########## @@ -23,6 +23,6 @@ rootLogger.appenderRef.test.ref = TestLogger appender.testlogger.name = TestLogger appender.testlogger.type = CONSOLE -appender.testlogger.target = SYSTEM_ERR +appender.testlogger.target = SYSTEM_OUT Review Comment: Regarding the Java project, there are two output streams: `SYSTEM_OUT` and `SYSTEM_ERR`. When printing an error-level log, the progress will use `SYSTEM_ERR` by default, otherwise, it uses `SYSTEM_OUT`. - `SYSTEM_ERR`: prints a red log - `SYSTEM_OUT`: prints a white/black log The behaviour before the current PR: all logs use `SYSTEM_ERR` -- 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]
