added option to add CR for printf support
This commit is contained in:
@ -377,11 +377,11 @@ ReturnValue_t LocalDataPoolManager::fetchPoolEntry(lp_id_t localPoolId,
|
||||
auto poolIter = localPoolMap.find(localPoolId);
|
||||
if (poolIter == localPoolMap.end()) {
|
||||
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
||||
sif::warning << "HousekeepingManager::fechPoolEntry: Pool entry "
|
||||
sif::warning << "HousekeepingManager::fetchPoolEntry: Pool entry "
|
||||
"not found." << std::endl;
|
||||
#else
|
||||
fsfw::printWarning("HousekeepingManager::fechPoolEntry: Pool entry "
|
||||
"not found.");
|
||||
fsfw::printWarning("HousekeepingManager::fetchPoolEntry: Pool entry "
|
||||
"not found.\n");
|
||||
#endif
|
||||
return HasLocalDataPoolIF::POOL_ENTRY_NOT_FOUND;
|
||||
}
|
||||
@ -393,7 +393,7 @@ ReturnValue_t LocalDataPoolManager::fetchPoolEntry(lp_id_t localPoolId,
|
||||
" Pool entry type conflict." << std::endl;
|
||||
#else
|
||||
fsfw::printWarning("HousekeepingManager::fetchPoolEntry:"
|
||||
" Pool entry type conflict.");
|
||||
" Pool entry type conflict.\n");
|
||||
#endif
|
||||
return HasLocalDataPoolIF::POOL_ENTRY_TYPE_CONFLICT;
|
||||
}
|
||||
|
Reference in New Issue
Block a user