changeset 758:a1eaa2e0c7cf

Remove syserr printing of GcCommandActivator Reviewed-by: neugens Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2012-October/004001.html
author Severin Gehwolf <sgehwolf@redhat.com>
date Wed, 31 Oct 2012 12:13:22 +0100
parents 1d2dd10ff10d
children a46da533768c
files gc/remote-collector-client-common/src/main/java/com/redhat/thermostat/gc/remote/client/common/osgi/GCCommandActivator.java unix-process-handler/src/main/java/com/redhat/thermostat/service/activator/Activator.java
diffstat 2 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gc/remote-collector-client-common/src/main/java/com/redhat/thermostat/gc/remote/client/common/osgi/GCCommandActivator.java	Tue Oct 30 12:41:23 2012 +0100
+++ b/gc/remote-collector-client-common/src/main/java/com/redhat/thermostat/gc/remote/client/common/osgi/GCCommandActivator.java	Wed Oct 31 12:13:22 2012 +0100
@@ -54,7 +54,6 @@
         tracker = new ServiceTracker(context, RequestQueue.class, null) {
             @Override
             public Object addingService(ServiceReference reference) {
-                System.err.println("starting GCCommandActivator");
                 
                 RequestQueue requestqueue = (RequestQueue) context.getService(reference);
                 
--- a/unix-process-handler/src/main/java/com/redhat/thermostat/service/activator/Activator.java	Tue Oct 30 12:41:23 2012 +0100
+++ b/unix-process-handler/src/main/java/com/redhat/thermostat/service/activator/Activator.java	Wed Oct 31 12:13:22 2012 +0100
@@ -52,7 +52,7 @@
     
     @Override
     public void start(BundleContext context) throws Exception {        
-        logger.log(Level.INFO, "activating thermostat-process bundles");
+        logger.log(Level.FINE, "activating thermostat-process bundles");
         
         Hashtable<String, String> props = new Hashtable<String, String>();
         props.put(UNIXProcessHandler.ID, UNIXProcessHandler.ID);