From 5a9d754f5c0bd9ee45f7917eb9feafefbf4a9c85 Mon Sep 17 00:00:00 2001 From: Mathieu Baudier Date: Fri, 15 Jan 2010 12:01:52 +0000 Subject: [PATCH 1/1] Reduce logging git-svn-id: https://svn.argeo.org/slc/trunk@3291 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- .../src/main/java/org/argeo/slc/osgi/BundlesManager.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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(); -- 2.39.2