From: Mathieu Baudier Date: Fri, 15 Jan 2010 12:01:52 +0000 (+0000) Subject: Reduce logging X-Git-Tag: argeo-slc-2.1.7~1463 X-Git-Url: http://git.argeo.org/?a=commitdiff_plain;h=5a9d754f5c0bd9ee45f7917eb9feafefbf4a9c85;p=gpl%2Fargeo-slc.git Reduce logging git-svn-id: https://svn.argeo.org/slc/trunk@3291 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- diff --git a/runtime/org.argeo.slc.support.osgi/src/main/java/org/argeo/slc/osgi/BundlesManager.java b/runtime/org.argeo.slc.support.osgi/src/main/java/org/argeo/slc/osgi/BundlesManager.java index e24b7223b..b26751df9 100644 --- a/runtime/org.argeo.slc.support.osgi/src/main/java/org/argeo/slc/osgi/BundlesManager.java +++ b/runtime/org.argeo.slc.support.osgi/src/main/java/org/argeo/slc/osgi/BundlesManager.java @@ -62,7 +62,7 @@ public class BundlesManager implements BundleContextAware, FrameworkListener, startSynchronous(bundle); long aStart = System.currentTimeMillis(); - if (log.isDebugEnabled()) { + if (log.isTraceEnabled()) { log.debug("OSGi upgrade performed in " + (aStart - begin) + "ms for bundle " + osgiBundle); log.debug(" stop \t: " + (bUpdate - bStop) + "ms"); @@ -83,19 +83,18 @@ public class BundlesManager implements BundleContextAware, FrameworkListener, long aAppContext = System.currentTimeMillis(); long end = aAppContext; - if (log.isDebugEnabled()) { + if (log.isTraceEnabled()) { log.debug("Application context refresh performed in " + (aAppContext - bAppContext) + "ms for bundle " + osgiBundle); - log.debug(" TOTAL\t: " + (aAppContext - bAppContext) + "ms"); } - if (log.isDebugEnabled()) { + if (log.isDebugEnabled()) log.debug("Bundle " + bundle.getSymbolicName() + " ready to be used at latest version." + " (upgrade performed in " + (end - begin) + "ms)."); - log.debug(" TOTAL\t: " + (end - begin) + "ms"); + if (log.isTraceEnabled()) { ApplicationContext applicationContext = (ApplicationContext) bundleContext .getService(sr); int beanDefCount = applicationContext.getBeanDefinitionCount();