Skip to content
Snippets Groups Projects
Commit c6cee9b3 authored by Björn Vonheiden's avatar Björn Vonheiden Committed by Sören Henning
Browse files

fix wrong log level

parent 3b365db9
No related branches found
No related tags found
1 merge request!178Enhance Flink configuration
......@@ -66,7 +66,7 @@ public final class HistoryServiceFlinkJob {
// Parallelism
final Integer parallelism = this.config.getInteger(ConfigurationKeys.PARALLELISM, null);
if (parallelism != null) {
LOGGER.error("Set parallelism: {}.", parallelism);
LOGGER.info("Set parallelism: {}.", parallelism);
this.env.setParallelism(parallelism);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment