Return-Path: X-Original-To: apmail-flink-issues-archive@minotaur.apache.org Delivered-To: apmail-flink-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EB97F1078D for ; Tue, 6 Jan 2015 09:01:34 +0000 (UTC) Received: (qmail 32744 invoked by uid 500); 6 Jan 2015 09:01:35 -0000 Delivered-To: apmail-flink-issues-archive@flink.apache.org Received: (qmail 32700 invoked by uid 500); 6 Jan 2015 09:01:35 -0000 Mailing-List: contact issues-help@flink.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.incubator.apache.org Delivered-To: mailing list issues@flink.incubator.apache.org Received: (qmail 32691 invoked by uid 99); 6 Jan 2015 09:01:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jan 2015 09:01:35 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 06 Jan 2015 09:01:34 +0000 Received: (qmail 32608 invoked by uid 99); 6 Jan 2015 09:01:13 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jan 2015 09:01:13 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D2F1A8C6945; Tue, 6 Jan 2015 09:01:12 +0000 (UTC) From: tillrohrmann To: issues@flink.incubator.apache.org Reply-To: issues@flink.incubator.apache.org References: In-Reply-To: Subject: [GitHub] incubator-flink pull request: Akka fixes Content-Type: text/plain Message-Id: <20150106090112.D2F1A8C6945@tyr.zones.apache.org> Date: Tue, 6 Jan 2015 09:01:12 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/incubator-flink/pull/283#discussion_r22514023 --- Diff: flink-runtime/src/main/scala/org/apache/flink/runtime/ActorLogMessages.scala --- @@ -30,13 +30,15 @@ trait ActorLogMessages { override def isDefinedAt(x: Any): Boolean = _receiveWithLogMessages.isDefinedAt(x) override def apply(x: Any):Unit = { - if(log.isDebugEnabled) { - log.debug(s"Received message ${x} from ${self.sender}.") --- End diff -- The idea of this log message is to see which message are currently processed by the actor. In cases where an actor fails it might be helpful to know which message he currently processed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---