|
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
|