diff --git a/RTCP/Cobalt/CoInterface/src/TABTranspose.cc b/RTCP/Cobalt/CoInterface/src/TABTranspose.cc
index 20a84c4288c2b439daa7eb7114c61ff41da4b02c..a8bec0461f793c7ef9863845c9b10c69ed1494fd 100644
--- a/RTCP/Cobalt/CoInterface/src/TABTranspose.cc
+++ b/RTCP/Cobalt/CoInterface/src/TABTranspose.cc
@@ -647,16 +647,16 @@ MultiSender::MultiSender( const HostMap &hostMap, const Parset &parset,
 
 MultiSender::~MultiSender()
 {
-  LOG_INFO_STR("MultiSender: realTime = " << itsParset.settings.realTime << ", maxRetentionTime = " << maxRetentionTime);
+  LOG_DEBUG_STR("MultiSender: realTime = " << itsParset.settings.realTime << ", maxRetentionTime = " << maxRetentionTime);
   for (HostMap::const_iterator i = hostMap.begin(); i != hostMap.end(); ++i) {
     const float didNotReceivePerc = 0.0; // we receive everythnig
     const float didNotSendPerc = drop_rates.at(i->first).mean();
     const float lostPerc = didNotSendPerc - didNotReceivePerc;
 
     if (lostPerc > 0)
-      LOG_ERROR_STR("[stream " << i->first << " to " << i->second.hostName << "] [BeamFormer] I lost " << lostPerc << "% of the data for that host");
+      LOG_ERROR_STR("[stream " << i->first << "] [BeamFormer] I lost " << lostPerc << "% of the data to " << i->second.hostName);
     if (didNotSendPerc > 0)
-      LOG_ERROR_STR("[stream " << i->first << " to " << i->second.hostName << "] [BeamFormer] Did not send " << didNotSendPerc << "% of the data to that host");
+      LOG_ERROR_STR("[stream " << i->first << "] [BeamFormer] Did not send " << didNotSendPerc << "% of the data to " << i->second.hostName);
   }
 }
 
diff --git a/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc b/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc
index 156e6fdc433e814a1d550d95a847540ae530bc71..5125b9d5f1c0e6ccb7838f11d03bf504f63b5d4f 100644
--- a/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc
+++ b/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc
@@ -794,9 +794,9 @@ namespace LOFAR
         const float lostPerc = didNotSendPerc - didNotReceivePerc;
 
         if (lostPerc > 0)
-          LOG_ERROR_STR("[Correlator] I lost " << lostPerc << "% of the data for stream " << globalSubbandIdx);
+          LOG_ERROR_STR("[Correlator] I lost " << lostPerc << "% of the data for stream " << globalSubbandIdx << " to " << ps.settings.correlator.files[globalSubbandIdx].location.host);
         if (didNotSendPerc > 0)
-          LOG_ERROR_STR("[Correlator] Did not send " << didNotSendPerc << "% of the data for stream " << globalSubbandIdx);
+          LOG_ERROR_STR("[Correlator] Did not send " << didNotSendPerc << "% of the data for stream " << globalSubbandIdx << " to " << ps.settings.correlator.files[globalSubbandIdx].location.host);
       }
 
       if (ps.settings.beamFormer.enabled) {