Hi,
Can I ask how to turn off Flink logging to avoid seeing INFO? I have tried
StreamExecutionEnvironment env =
StreamExecutionEnvironment.getExecutionEnvironment();
env.getConfig().disableSysoutLogging();
....
env.execute()
and
Configuration env_config = new Configuration();
env_config.setBoolean("printProgressDuringExecution", false);
StreamExecutionEnvironment env =
StreamExecutionEnvironment.createLocalEnvironment(4, env_config);
....
env.execute();
Do you have any other suggestions?
Best,
Sendoh
--
View this message in context:
http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/Turn-off-logging-in-Flink-tp6196.html
Sent from the Apache Flink User Mailing List archive. mailing list archive at
Nabble.com.