Skip to content
Snippets Groups Projects
Commit a137d9b1 authored by srosse's avatar srosse
Browse files

no-jira: reduce level of some log informations at startup

parent b9e9612d
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@ public class NewControllerFactory {
ContextEntryControllerCreator oldCreator = contextEntryControllerCreators.get(key);
contextEntryControllerCreators.put(key, controllerCreator);
// Add config logging to console
log.info("Adding context entry controller creator for key::" + key + " and value::" + controllerCreator.getClass().getCanonicalName()
log.debug("Adding context entry controller creator for key::" + key + " and value::" + controllerCreator.getClass().getCanonicalName()
+ (oldCreator == null ? "" : " replaceing existing controller creator ::" + oldCreator.getClass().getCanonicalName()), null);
}
......
......@@ -87,7 +87,7 @@
<!-- The e-Assessment parent node -->
<bean class="org.olat.core.extensions.action.GenericActionExtension" init-method="initExtensionPoints">
<property name="order" value="7420" />
<property name="navigationKey" value="modules" />
<property name="navigationKey" value="eassessment" />
<property name="nodeIdentifierIfParent" value="eAssessmentParent" />
<property name="translationPackage" value="org.olat.admin" />
<property name="i18nActionKey" value="menu.eassessment" />
......
......@@ -162,7 +162,7 @@ public class ExtManager extends LogDelegator {
for (Extension extension : extensionValues) {
if (!extension.isEnabled()) {
count_disabled++;
logInfo("* Disabled Extension got loaded :: " + extension + ". Check that you don't use it or that extension returns null for getExtensionFor() when disabled, resp. overwrite isEnabled().",null);
logDebug("* Disabled Extension got loaded :: " + extension + ". Check that you don't use it or that extension returns null for getExtensionFor() when disabled, resp. overwrite isEnabled().",null);
}
int orderKey = extension.getOrder();
......
......@@ -171,7 +171,7 @@ public class UsrPropCfgManager extends AbstractSpringModule implements GenericEv
// -->set it as active
// (note: if you delete persistedProperties-conf-file, all handlers are
// "new" and therefore should be active)
log.info("UserPropertyHandler "+handler.getName()+" unknown in config, set Property as active.");
log.debug("UserPropertyHandler "+handler.getName()+" unknown in config, set Property as active.");
cfgObject.setHandlerAsActive(handler, true);
}
}
......@@ -189,7 +189,7 @@ public class UsrPropCfgManager extends AbstractSpringModule implements GenericEv
String handlerNameInConfig = props.getProperty(contextName, null);
if (handlerNameInConfig == null) {// our config doesn't know this context,
// leave it as is!
log.info("UserPropertyUsageContext "+contextName+" unknown in config, leave Context untouched.");
log.debug("UserPropertyUsageContext "+contextName+" unknown in config, leave Context untouched.");
continue;
}
// this list from the persistedProperties has the correct order of handlers!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment