eive-obsw/mission/system/tree/util.cpp
Robin Mueller 9c0a89bbdc
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
added all checks, made checker func generic
2022-04-28 16:20:41 +02:00

10 lines
266 B
C++

#include "util.h"
#include "fsfw/serviceinterface.h"
void subsystem::checkInsert(ReturnValue_t result, const char* ctx) {
if (result != HasReturnvaluesIF::RETURN_OK) {
sif::warning << "satsystem::checkInsert: Insertion failed at " << ctx << std::endl;
}
}