Index: trunk/FACT++/src/datalogger.cc
===================================================================
--- trunk/FACT++/src/datalogger.cc	(revision 13071)
+++ trunk/FACT++/src/datalogger.cc	(revision 13083)
@@ -460,4 +460,5 @@
 void DataLogger::AddService(const string& server, const string& service, const string&, bool isCmd)
 {
+    Info("Got request to add service: "+server+"/"+service);
     //dataLogger does not subscribe to commands
     if (isCmd)
@@ -483,6 +484,5 @@
     if ((server == "FAD_CONTROL") && (service == "START_RUN"))
         fRunNumberService = list[service].dimInfo.get();
-    if (fDebugIsOn)
-        Debug("Added subscription to " + server + "/" + service);
+    Info("Added subscription to " + server + "/" + service);
 }
 // --------------------------------------------------------------------------
@@ -495,4 +495,5 @@
 void DataLogger::RemoveService(string server, string service, bool isCmd)
 {
+    Info("Got request for removing service: "+server+"/"+service);
     if (fDestructing)//this function is called by the super class, after the destructor has deleted its own subscriptions
         return;
@@ -521,8 +522,5 @@
         fRunNumberService = NULL;
 
-    if (fDebugIsOn)
-    {
-        Debug("Removed subscription to " + server + "/" + service);
-    }
+    Info("Removed subscription to " + server + "/" + service);
 }
 // --------------------------------------------------------------------------
@@ -533,4 +531,5 @@
 void DataLogger::RemoveAllServices(const string& server)
 {
+    Info("Got request for removing all services from: "+server);
     if (fServiceSubscriptions.find(server)==fServiceSubscriptions.end())
     {
@@ -1029,4 +1028,6 @@
         return;
     }
+    cout.precision(20);
+    cout << "Orig timestamp: " << Time(I->getTimestamp(), I->getTimestampMillisecs()*1000).Mjd() << endl;
     // FIXME: Here we have to check if we have received the
     //        service with the run-number.
