You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by fm...@apache.org on 2008/05/27 12:30:30 UTC

svn commit: r660457 - /incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrResourceProvider.java

Author: fmeschbe
Date: Tue May 27 03:30:29 2008
New Revision: 660457

URL: http://svn.apache.org/viewvc?rev=660457&view=rev
Log:
Log existence check failures at DEBUG level only

Modified:
    incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrResourceProvider.java

Modified: incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrResourceProvider.java
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrResourceProvider.java?rev=660457&r1=660456&r2=660457&view=diff
==============================================================================
--- incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrResourceProvider.java (original)
+++ incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrResourceProvider.java Tue May 27 03:30:29 2008
@@ -159,7 +159,7 @@
         try {
             return getSession().itemExists(path);
         } catch (RepositoryException re) {
-            log.info("itemExists: Error checking for existence of {}: {}",
+            log.debug("itemExists: Error checking for existence of {}: {}",
                 path, re.toString());
             return false;
         }