Return-Path: X-Original-To: apmail-flink-commits-archive@minotaur.apache.org Delivered-To: apmail-flink-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 35CE918E72 for ; Tue, 12 May 2015 21:03:13 +0000 (UTC) Received: (qmail 86687 invoked by uid 500); 12 May 2015 21:03:13 -0000 Delivered-To: apmail-flink-commits-archive@flink.apache.org Received: (qmail 86636 invoked by uid 500); 12 May 2015 21:03:13 -0000 Mailing-List: contact commits-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list commits@flink.apache.org Received: (qmail 86612 invoked by uid 99); 12 May 2015 21:03:13 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 May 2015 21:03:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DB26FE17E1; Tue, 12 May 2015 21:03:12 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sewen@apache.org To: commits@flink.apache.org Date: Tue, 12 May 2015 21:03:15 -0000 Message-Id: <59088a2327ab4debbab1271d68d57360@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [04/10] flink git commit: [FLINK-1973] [jobmanager] Task execution state messages are logged on INFO level, rather than on DEBUG level [FLINK-1973] [jobmanager] Task execution state messages are logged on INFO level, rather than on DEBUG level Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/ededb6b7 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/ededb6b7 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/ededb6b7 Branch: refs/heads/master Commit: ededb6b74a2d388ff1c54ddf0f2733c65675c9a0 Parents: 9b7f8aa Author: Stephan Ewen Authored: Tue May 5 00:26:05 2015 +0200 Committer: Stephan Ewen Committed: Tue May 12 21:35:58 2015 +0200 ---------------------------------------------------------------------- .../org/apache/flink/runtime/executiongraph/Execution.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/ededb6b7/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java ---------------------------------------------------------------------- diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java b/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java index 731d70f..742a7c1 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java +++ b/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java @@ -875,10 +875,8 @@ public class Execution implements Serializable { if (STATE_UPDATER.compareAndSet(this, currentState, targetState)) { markTimestamp(targetState); - if (LOG.isDebugEnabled()) { - LOG.debug("{} ({}) switched from {} to {}.", - getVertex().getTaskNameWithSubtaskIndex(), getAttemptId(), currentState, targetState); - } + LOG.info(getVertex().getTaskNameWithSubtaskIndex() + " (" + getAttemptId() + ") switched from " + + currentState + " to " + targetState); // make sure that the state transition completes normally. // potential errors (in listeners may not affect the main logic)