You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by st...@apache.org on 2013/05/26 21:30:48 UTC

git commit: DELTASPIKE-339 don't lot the Exception as this is a normal operating situation

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 <st...@apache.org>
Authored: Sun May 26 21:29:10 2013 +0200
Committer: Mark Struberg <st...@apache.org>
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;
     }