You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2020/06/12 12:16:06 UTC

[flink] 08/10: [FLINK-17977][runtime] Log message timeout on DEBUG

This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch release-1.11
in repository https://gitbox.apache.org/repos/asf/flink.git

commit d8eb96257fac39b5fa687e101e6ce1a2fb1893c0
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Thu Jun 11 19:12:17 2020 +0200

    [FLINK-17977][runtime] Log message timeout on DEBUG
---
 .../org/apache/flink/runtime/taskexecutor/TaskManagerConfiguration.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerConfiguration.java b/flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerConfiguration.java
index 2a582b3..00d2617 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerConfiguration.java
+++ b/flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerConfiguration.java
@@ -192,7 +192,7 @@ public class TaskManagerConfiguration implements TaskManagerRuntimeInfo {
 					"'.Use formats like '50 s' or '1 min' to specify the timeout.");
 		}
 
-		LOG.info("Messages have a max timeout of " + timeout);
+		LOG.debug("Messages have a max timeout of " + timeout);
 
 		Time finiteRegistrationDuration;
 		try {