Return-Path: X-Original-To: apmail-incubator-deltaspike-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-deltaspike-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 C4C5A9FCD for ; Sun, 26 May 2013 19:30:48 +0000 (UTC) Received: (qmail 61805 invoked by uid 500); 26 May 2013 19:30:48 -0000 Delivered-To: apmail-incubator-deltaspike-commits-archive@incubator.apache.org Received: (qmail 61776 invoked by uid 500); 26 May 2013 19:30:48 -0000 Mailing-List: contact deltaspike-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: deltaspike-dev@incubator.apache.org Delivered-To: mailing list deltaspike-commits@incubator.apache.org Received: (qmail 61768 invoked by uid 99); 26 May 2013 19:30:48 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 May 2013 19:30:48 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 385A38950F3; Sun, 26 May 2013 19:30:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: struberg@apache.org To: deltaspike-commits@incubator.apache.org Message-Id: <11266d64cc0b4b80a644521bf933e338@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: DELTASPIKE-339 don't lot the Exception as this is a normal operating situation Date: Sun, 26 May 2013 19:30:48 +0000 (UTC) Updated Branches: refs/heads/master 15de1f5c9 -> 17db0f11e DELTASPIKE-339 don't lot the Exception as this is a normal operating situation Project: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/commit/17db0f11 Tree: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/tree/17db0f11 Diff: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/diff/17db0f11 Branch: refs/heads/master Commit: 17db0f11e85bb21def0af785e654db15120d874b Parents: 15de1f5 Author: Mark Struberg Authored: Sun May 26 21:29:10 2013 +0200 Committer: Mark Struberg Committed: Sun May 26 21:29:10 2013 +0200 ---------------------------------------------------------------------- .../deltaspike/core/impl/util/JndiUtils.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/17db0f11/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/util/JndiUtils.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/util/JndiUtils.java b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/util/JndiUtils.java index 85fa77b..9301da5 100644 --- a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/util/JndiUtils.java +++ b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/util/JndiUtils.java @@ -190,7 +190,7 @@ public abstract class JndiUtils } catch (NamingException e) { - LOG.log(Level.SEVERE, "InitialContext#list failed!", e); + // this is expected if there is no entry in JNDI for the requested name or type } return result; }