eive-obsw/mission/system/tree/util.cpp
Robin Mueller aa86bc722f
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
retval corrections
2022-08-29 15:56:18 +02:00

10 lines
253 B
C++

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