Reduce logging
authorMathieu Baudier <mbaudier@argeo.org>
Fri, 15 Jan 2010 12:01:52 +0000 (12:01 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Fri, 15 Jan 2010 12:01:52 +0000 (12:01 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@3291 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

runtime/org.argeo.slc.support.osgi/src/main/java/org/argeo/slc/osgi/BundlesManager.java

index e24b7223b7736299125d5aae7f6ddd29b5a4d0f6..b26751df90764f8c78af9211244c19f5b44cbc1e 100644 (file)
@@ -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();