Author: cziegeler
Date: Mon Dec 14 14:44:30 2009
New Revision: 890347
URL: http://svn.apache.org/viewvc?rev=890347&view=rev
Log:
Lower logging level to debug.
Modified:
sling/trunk/bundles/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrPropertyResource.java
Modified: sling/trunk/bundles/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrPropertyResource.java
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrPropertyResource.java?rev=890347&r1=890346&r2=890347&view=diff
==============================================================================
--- sling/trunk/bundles/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrPropertyResource.java
(original)
+++ sling/trunk/bundles/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrPropertyResource.java
Mon Dec 14 14:44:30 2009
@@ -163,12 +163,12 @@
}
} catch (ValueFormatException vfe) {
- log.info("adaptTo: Problem accessing the property value of {}: {}",
+ log.debug("adaptTo: Problem accessing the property value of {}: {}",
getPath(), vfe.getMessage());
log.debug("adaptTo: Cause", vfe);
} catch (RepositoryException re) {
- log.info("adaptTo: Problem accessing the property " + getPath(), re);
+ log.debug("adaptTo: Problem accessing the property " + getPath(), re);
}
// try to use adapter factories
|