-
Type:
Bug
-
Status: Resolved (View Workflow)
-
Priority:
Blocker
-
Resolution: Done
-
Affects Version/s: 2.4 Final, 2.4.1 Final, 2.4.1 SP1, 2.6.CR2
-
Fix Version/s: 2.6 CR3, 2.4.2 Final
-
Component/s: Portal CMS
-
Labels:None
I have spent two days with 3 support customers explaining them how to set TRACE level logs
for org.jboss.cache without success. They could never get it to work.
Eventually, I have found the culprit:
org.jboss.portal.cms.impl.jcr.JCRCMS
//set the proper logging level for JBossCache and JGroups
Logger cacheLogger = Logger.getLogger("org.jboss.cache");
cacheLogger.setLevel(Level.ERROR);
Logger groupsLogger = Logger.getLogger("org.jgroups");
groupsLogger.setLevel(Level.ERROR);
This code should be removed immediately.