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 24ADD200B6B for ; Thu, 11 Aug 2016 01:56:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 23961160AB9; Wed, 10 Aug 2016 23:56:15 +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 716E4160AB1 for ; Thu, 11 Aug 2016 01:56:14 +0200 (CEST) Received: (qmail 11537 invoked by uid 500); 10 Aug 2016 23:56:13 -0000 Mailing-List: contact commits-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 commits@activemq.apache.org Received: (qmail 11515 invoked by uid 99); 10 Aug 2016 23:56: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; Wed, 10 Aug 2016 23:56:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 67688E0200; Wed, 10 Aug 2016 23:56:13 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: johndament@apache.org To: commits@activemq.apache.org Date: Wed, 10 Aug 2016 23:56:13 -0000 Message-Id: <659146922a284650906ef7891881395d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/5] activemq-artemis git commit: ARTEMIS-542 removing excessive warning from codebase archived-at: Wed, 10 Aug 2016 23:56:15 -0000 Repository: activemq-artemis Updated Branches: refs/heads/master b7e5cc484 -> 2ab52da9a ARTEMIS-542 removing excessive warning from codebase Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/53bb3ea1 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/53bb3ea1 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/53bb3ea1 Branch: refs/heads/master Commit: 53bb3ea1833cddda6c2ded70d3149286c8207570 Parents: b7e5cc4 Author: Clebert Suconic Authored: Wed Aug 10 16:09:05 2016 -0400 Committer: Clebert Suconic Committed: Wed Aug 10 16:10:57 2016 -0400 ---------------------------------------------------------------------- .../activemq/artemis/core/client/ActiveMQClientLogger.java | 4 ---- .../artemis/core/client/impl/ClientSessionFactoryImpl.java | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/53bb3ea1/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/ActiveMQClientLogger.java ---------------------------------------------------------------------- diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/ActiveMQClientLogger.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/ActiveMQClientLogger.java index 634d69f..244f76f 100644 --- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/ActiveMQClientLogger.java +++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/ActiveMQClientLogger.java @@ -87,10 +87,6 @@ public interface ActiveMQClientLogger extends BasicLogger { void failedToConnectToServer(Integer reconnectAttempts); @LogMessage(level = Logger.Level.WARN) - @Message(id = 212006, value = "Waiting {0} milliseconds before next retry. RetryInterval={1} and multiplier={2}", format = Message.Format.MESSAGE_FORMAT) - void waitingForRetry(Long interval, Long retryInterval, Double multiplier); - - @LogMessage(level = Logger.Level.WARN) @Message(id = 212007, value = "connector.create or connectorFactory.createConnector should never throw an exception, implementation is badly behaved, but we will deal with it anyway.", format = Message.Format.MESSAGE_FORMAT) http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/53bb3ea1/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ClientSessionFactoryImpl.java ---------------------------------------------------------------------- diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ClientSessionFactoryImpl.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ClientSessionFactoryImpl.java index c944fa1..88a20e1 100644 --- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ClientSessionFactoryImpl.java +++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ClientSessionFactoryImpl.java @@ -825,7 +825,7 @@ public class ClientSessionFactoryImpl implements ClientSessionFactoryInternal, C } if (ClientSessionFactoryImpl.logger.isTraceEnabled()) { - ActiveMQClientLogger.LOGGER.waitingForRetry(interval, retryInterval, retryIntervalMultiplier); + ClientSessionFactoryImpl.logger.trace("Waiting " + interval + " milliseconds before next retry. RetryInterval=" + retryInterval + " and multiplier=" + retryIntervalMultiplier); } try {