Download Firefox: WindowsMac OS X
logo       
Google Custom Search
    AddThis Social Bookmark Button

Re: patch: log defaults at DEBUG level: msg#00005

Subject: Re: patch: log defaults at DEBUG level
I'm all for reducing the log level, and appreciate the check to save on unnecessary string creation. Perhaps info would be more appropriate than debug, however? Also, please adhere to pre-existing formatting conventions of the files, and supply a change log message referencing the files which you changed.

- Dan


John Kristian wrote:
I propose this patch:
Index: src/java/org/apache/jcs/config/OptionConverter.java
===================================================================
RCS file:
/home/cvspublic/jakarta-turbine-jcs/src/java/org/apache/jcs/config/OptionCon
verter.java,v
retrieving revision 1.2
diff -u -r1.2 OptionConverter.java
--- src/java/org/apache/jcs/config/OptionConverter.java 22 Aug 2003 11:57:19
-0000 1.2
+++ src/java/org/apache/jcs/config/OptionConverter.java 3 Oct 2003 19:07:54
-0000
@@ -186,7 +186,9 @@
         String className = findAndSubst( key, props );
         if ( className == null )
         {
-            log.warn( "Could not find value for key " + key );
+            if (log.isDebugEnabled()) {
+                log.debug( "Could not find value for key " + key + "; using
default." );
+            }
             return defaultValue;
         }
         // Trim className to avoid trailing spaces that cause problems.
Index:
src/java/org/apache/jcs/engine/control/CompositeCacheConfigurator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-turbine-jcs/src/java/org/apache/jcs/engine/control/C
ompositeCacheConfigurator.java,v
retrieving revision 1.8
diff -u -r1.8 CompositeCacheConfigurator.java
--- src/java/org/apache/jcs/engine/control/CompositeCacheConfigurator.java
22 Aug 2003 11:57:18 -0000 1.8
+++ src/java/org/apache/jcs/engine/control/CompositeCacheConfigurator.java 3
Oct 2003 19:07:54 -0000
@@ -336,9 +336,9 @@
null );
         if ( ccAttr == null )
         {
-            log.warn( "Could not instantiate ccAttr named '" + attrName +
-                      "', using defaults." );
-
+            if (log.isDebugEnabled()) {
+                log.debug( "Could not instantiate ccAttr named '" +
attrName + "'; using defaults." );
+            }
             ICompositeCacheAttributes ccAttr2 =
ccMgr.getDefaultCacheAttributes();
             ccAttr = ccAttr2.copy();
         }
@@ -372,9 +372,9 @@
null );
         if ( eAttr == null )
         {
-            log.warn( "Could not instantiate eAttr named '" + attrName +
-                      "', using defaults." );
-
+            if (log.isDebugEnabled()) {
+                log.debug( "Could not instantiate eAttr named '" + attrName
+ "'; using defaults." );
+            }
             IElementAttributes eAttr2 =
ccMgr.getDefaultElementAttributes();
             eAttr = eAttr2.copy();
         }
- John Kristian
P.S. Why? For example, it prevents a Hibernate application from logging the
following crap at startup, which is distracting and worries users
needlessly:
2003-10-03 13:12:06,921 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named 'jcs.system.groupIdCache.elementattributes', using
defaults.
2003-10-03 13:12:06,968 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferencePermission$Factory.COD
E_TO_IDS.elementattributes
2003-10-03 13:12:06,968 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferencePermission$Factory.CO
DE_TO_IDS.elementattributes', using defaults.
2003-10-03 13:12:07,171 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceUser.elementattributes
2003-10-03 13:12:07,171 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceUser.elementattribute
s', using defaults.
2003-10-03 13:12:07,171 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceCurrency.localizations
_.elementattributes
2003-10-03 13:12:07,171 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceCurrency.localization
s_.elementattributes', using defaults.
2003-10-03 13:12:07,203 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceNotificationEventDetai
l.domainMemberships_.elementattributes
2003-10-03 13:12:07,203 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceNotificationEventDeta
il.domainMemberships_.elementattributes', using defaults.
2003-10-03 13:12:07,203 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceUser.audienceAssociati
ons_.elementattributes
2003-10-03 13:12:07,203 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceUser.audienceAssociat
ions_.elementattributes', using defaults.
2003-10-03 13:12:07,203 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceRole_T.elementattribut
es
2003-10-03 13:12:07,203 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceRole_T.elementattribu
tes', using defaults.
2003-10-03 13:12:07,203 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceUserRoleAssociation.el
ementattributes
2003-10-03 13:12:07,203 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceUserRoleAssociation.e
lementattributes', using defaults.
2003-10-03 13:12:07,203 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferencePermission.localizatio
ns_.elementattributes
2003-10-03 13:12:07,203 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferencePermission.localizati
ons_.elementattributes', using defaults.
2003-10-03 13:12:07,203 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceGroupLearningPlan.loca
lizations_.elementattributes
2003-10-03 13:12:07,203 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceGroupLearningPlan.loc
alizations_.elementattributes', using defaults.
2003-10-03 13:12:07,203 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivityType.e
lementattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivityType.
elementattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceRole.localizations_.el
ementattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceRole.localizations_.e
lementattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceCatalog.localizations_
.elementattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceCatalog.localizations
_.elementattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceAudienceContentAssocia
tion.elementattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceAudienceContentAssoci
ation.elementattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceAudienceCriterion.elem
entattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceAudienceCriterion.ele
mentattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceUser.domainMemberships
_.elementattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceUser.domainMembership
s_.elementattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceUser.managedUsers_.ele
mentattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceUser.managedUsers_.el
ementattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceRole.permissionAssocia
tions_.elementattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceRole.permissionAssoci
ations_.elementattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceAudience.content_.elem
entattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceAudience.content_.ele
mentattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceJobCategory.localizati
ons_.elementattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceJobCategory.localizat
ions_.elementattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivitySessio
n.elementattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivitySessi
on.elementattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivity.eleme
ntattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivity.elem
entattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceDomainMembership.eleme
ntattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceDomainMembership.elem
entattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.enums.reference.ReferenceEnumerationType.
enumerations_.elementattributes
2003-10-03 13:12:07,218 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.enums.reference.ReferenceEnumerationType
.enumerations_.elementattributes', using defaults.
2003-10-03 13:12:07,218 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceDomain.descendantSet_.
elementattributes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceDomain.descendantSet_
.elementattributes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceDomain.localizations_.
elementattributes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceDomain.localizations_
.elementattributes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceJobCategory.domainMemb
erships_.elementattributes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceJobCategory.domainMem
berships_.elementattributes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceExternalTicket.element
attributes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceExternalTicket.elemen
tattributes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceAudienceUserAssociatio
n.elementattributes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceAudienceUserAssociati
on.elementattributes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceDomain.ancestorSet_.el
ementattributes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceDomain.ancestorSet_.e
lementattributes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivitySessio
n.domainMemberships_.elementattributes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivitySessi
on.domainMemberships_.elementattributes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.enums.reference.ReferenceEnumeration_T.el
ementattributes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.enums.reference.ReferenceEnumeration_T.e
lementattributes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceDomain_T.elementattrib
utes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceDomain_T.elementattri
butes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceDomain.elementattribut
es
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceDomain.elementattribu
tes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceCurrency.elementattrib
utes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceCurrency.elementattri
butes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.enums.reference.ReferenceEnumeration.loca
lizations_.elementattributes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.enums.reference.ReferenceEnumeration.loc
alizations_.elementattributes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceCatalog.elementattribu
tes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceCatalog.elementattrib
utes', using defaults.
2003-10-03 13:12:07,234 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.enums.reference.ReferenceEnumeration.elem
entattributes
2003-10-03 13:12:07,234 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.enums.reference.ReferenceEnumeration.ele
mentattributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLocation.domainMembers
hips_.elementattributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLocation.domainMember
ships_.elementattributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceDomainAncestry.element
attributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceDomainAncestry.elemen
tattributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceAudience.criteria_.ele
mentattributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceAudience.criteria_.el
ementattributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivityType.l
ocalizations_.elementattributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivityType.
localizations_.elementattributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivityType_T
.elementattributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivityType_
T.elementattributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceJobCategory_T.elementa
ttributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceJobCategory_T.element
attributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceRolePermissionAssociat
ion.elementattributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceRolePermissionAssocia
tion.elementattributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceAudience.audienceMembe
rs_.elementattributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceAudience.audienceMemb
ers_.elementattributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivity_T.ele
mentattributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivity_T.el
ementattributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferencePermission.legacyPermi
ssion_.elementattributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferencePermission.legacyPerm
ission_.elementattributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLegacyPermission.eleme
ntattributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLegacyPermission.elem
entattributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferencePermission_T.elementat
tributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferencePermission_T.elementa
ttributes', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceRole.elementattributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceRole.elementattribute
s', using defaults.
2003-10-03 13:12:07,250 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferencePermission.roleAssocia
tions_.elementattributes
2003-10-03 13:12:07,250 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferencePermission.roleAssoci
ations_.elementattributes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceCatalogMembership.elem
entattributes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceCatalogMembership.ele
mentattributes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLocation.localizations
_.elementattributes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLocation.localization
s_.elementattributes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivity.local
izations_.elementattributes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLearningActivity.loca
lizations_.elementattributes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceUserRoleAssociation.do
mainMemberships_.elementattributes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceUserRoleAssociation.d
omainMemberships_.elementattributes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceCatalog_T.elementattri
butes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceCatalog_T.elementattr
ibutes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLocation.elementattrib
utes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLocation.elementattri
butes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceJobCategory.elementatt
ributes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceJobCategory.elementat
tributes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceNotificationEventDetai
l.elementattributes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceNotificationEventDeta
il.elementattributes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceCurrency_T.elementattr
ibutes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceCurrency_T.elementatt
ributes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceAudience.domainMembers
hips_.elementattributes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceAudience.domainMember
ships_.elementattributes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceUser.userRoleAssociati
on_.elementattributes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceUser.userRoleAssociat
ion_.elementattributes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceLocation_T.elementattr
ibutes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceLocation_T.elementatt
ributes', using defaults.
2003-10-03 13:12:07,265 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferencePermission.elementattr
ibutes
2003-10-03 13:12:07,265 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferencePermission.elementatt
ributes', using defaults.
2003-10-03 13:12:07,281 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceGroupLearningPlan.elem
entattributes
2003-10-03 13:12:07,281 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceGroupLearningPlan.ele
mentattributes', using defaults.
2003-10-03 13:12:07,281 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceGroupLearningPlan_T.el
ementattributes
2003-10-03 13:12:07,281 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceGroupLearningPlan_T.e
lementattributes', using defaults.
2003-10-03 13:12:07,281 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceAudience.elementattrib
utes
2003-10-03 13:12:07,281 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceAudience.elementattri
butes', using defaults.
2003-10-03 13:12:07,281 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.enums.reference.ReferenceEnumerationType.
elementattributes
2003-10-03 13:12:07,281 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.enums.reference.ReferenceEnumerationType
.elementattributes', using defaults.
2003-10-03 13:12:07,281 WARN  [org.apache.jcs.config.OptionConverter] Could
not find value for key
jcs.region.com.docent.lms.entities.reference.ReferenceSupportedLocale.elemen
tattributes
2003-10-03 13:12:07,281 WARN
[org.apache.jcs.engine.control.CompositeCacheConfigurator] Could not
instantiate eAttr named
'jcs.region.com.docent.lms.entities.reference.ReferenceSupportedLocale.eleme
ntattributes', using defaults.


<Prev in Thread] Current Thread [Next in Thread>