diff --git a/tcdistribution/CCSDSDistributor.cpp b/tcdistribution/CCSDSDistributor.cpp index 464e19d0..0852bc21 100644 --- a/tcdistribution/CCSDSDistributor.cpp +++ b/tcdistribution/CCSDSDistributor.cpp @@ -11,7 +11,7 @@ CCSDSDistributor::~CCSDSDistributor() { } iterator_t CCSDSDistributor::selectDestination() { - sif::debug << "CCSDSDistributor::selectDestination received: " << this->currentMessage.getStorageId().pool_index << ", " << this->currentMessage.getStorageId().packet_index << std::endl; +// sif::debug << "CCSDSDistributor::selectDestination received: " << this->currentMessage.getStorageId().pool_index << ", " << this->currentMessage.getStorageId().packet_index << std::endl; const uint8_t* p_packet = NULL; size_t size = 0; //TODO check returncode? diff --git a/tcdistribution/PUSDistributor.cpp b/tcdistribution/PUSDistributor.cpp index 810ac2c2..c21eda92 100644 --- a/tcdistribution/PUSDistributor.cpp +++ b/tcdistribution/PUSDistributor.cpp @@ -15,7 +15,7 @@ PUSDistributor::~PUSDistributor() { } iterator_t PUSDistributor::selectDestination() { - sif::debug << "PUSDistributor::handlePacket received "<currentPacket.store_index << ", " << this->current_packet_id.packet_index << std::endl; +// sif::debug << "PUSDistributor::handlePacket received "<currentPacket.store_index << ", " << this->current_packet_id.packet_index << std::endl; iterator_t queueMapIt = this->queueMap.end(); this->currentPacket.setStoreAddress(this->currentMessage.getStorageId()); if (currentPacket.getWholeData() != NULL) { diff --git a/tcdistribution/TcDistributor.cpp b/tcdistribution/TcDistributor.cpp index bfed0219..5e80b3b4 100644 --- a/tcdistribution/TcDistributor.cpp +++ b/tcdistribution/TcDistributor.cpp @@ -31,7 +31,7 @@ ReturnValue_t TcDistributor::handlePacket() { iterator_t queueMapIt = this->selectDestination(); ReturnValue_t returnValue = RETURN_FAILED; - sif::debug << "TcDistributor::handlePacket" << std::endl; +// sif::debug << "TcDistributor::handlePacket" << std::endl; if (queueMapIt != this->queueMap.end()) { returnValue = this->tcQueue->sendMessage(queueMapIt->second, &this->currentMessage);