Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 3FF1B200AC8 for ; Tue, 7 Jun 2016 17:45:17 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 3B4BD160A36; Tue, 7 Jun 2016 15:45:17 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 8692F160968 for ; Tue, 7 Jun 2016 17:45:16 +0200 (CEST) Received: (qmail 60833 invoked by uid 500); 7 Jun 2016 15:45:15 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Received: (qmail 60822 invoked by uid 99); 7 Jun 2016 15:45:15 -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, 07 Jun 2016 15:45:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 19D9EDFC8C; Tue, 7 Jun 2016 15:45:15 +0000 (UTC) From: clebertsuconic To: dev@activemq.apache.org Reply-To: dev@activemq.apache.org References: In-Reply-To: Subject: [GitHub] activemq-artemis pull request #569: [ARTEMIS-558] java.util.MissingFormatArg... Content-Type: text/plain Message-Id: <20160607154515.19D9EDFC8C@git1-us-west.apache.org> Date: Tue, 7 Jun 2016 15:45:15 +0000 (UTC) archived-at: Tue, 07 Jun 2016 15:45:17 -0000 Github user clebertsuconic commented on a diff in the pull request: https://github.com/apache/activemq-artemis/pull/569#discussion_r66097241 --- Diff: artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/cursor/impl/PageSubscriptionImpl.java --- @@ -576,23 +576,30 @@ public void lateDeliveryRollback(PagePosition position) { @Override public boolean isComplete(long page) { - logger.tracef("%s isComplete %d", this, page); + if (empty && consumedPages.isEmpty()) { + logger.tracef("%s isComplete %d", this, page); + } + synchronized (consumedPages) { if (empty && consumedPages.isEmpty()) { if (logger.isTraceEnabled()) { - logger.tracef("isComplete(%d)::Subscription %s has empty=%s, consumedPages.isEmpty=%s", (Object)page, this, consumedPages.isEmpty()); + logger.tracef("isComplete(%d)::Subscription %s has empty=%s, consumedPages.isEmpty=%s", page, this, empty, consumedPages.isEmpty()); } return true; } PageCursorInfo info = consumedPages.get(page); if (info == null && empty) { - logger.tracef("isComplete(%d)::::Couldn't find info and it is empty", page); + if (empty && consumedPages.isEmpty()) { --- End diff -- this doesn't look right to me? why not just to log it? --- 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. ---