Log at debug level rather that info in CacheManager
---------------------------------------------------
Key: JCR-1057
URL: https://issues.apache.org/jira/browse/JCR-1057
Project: Jackrabbit
Issue Type: Improvement
Components: core
Affects Versions: 1.3.1
Reporter: Florent Guillaume
Priority: Trivial
Please change org.apache.jackrabbit.core.state.CacheManager#resizeAll to log at
DEBUG level rather that INFO.
15:50:01,058 INFO [CacheManager] resizeAll size=8
---
jackrabbit-core/src/main/java/org/apache/jackrabbit/core/state/CacheManager.java
(revision 565102)
+++
jackrabbit-core/src/main/java/org/apache/jackrabbit/core/state/CacheManager.java
(working copy)
@@ -122,7 +122,7 @@
* Re-calcualte the maximum memory for each cache, and set the new limits.
*/
private void resizeAll() {
- log.info("resizeAll size=" + caches.size());
+ log.debug("resizeAll size=" + caches.size());
// get strong references
// entries in a weak hash map may disappear any time
// so can't use size() / keySet() directly
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.