Removed debugging messages
This commit is contained in:
parent
5009d12780
commit
ff19b0d4b9
@ -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?
|
||||
|
@ -15,7 +15,7 @@ PUSDistributor::~PUSDistributor() {
|
||||
}
|
||||
|
||||
iterator_t PUSDistributor::selectDestination() {
|
||||
sif::debug << "PUSDistributor::handlePacket received "<<std::endl;// << this->currentPacket.store_index << ", " << this->current_packet_id.packet_index << std::endl;
|
||||
// sif::debug << "PUSDistributor::handlePacket received "<<std::endl;// << this->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) {
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user