2022-04-28 16:20:41 +02:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
#include "fsfw/serviceinterface.h"
|
|
|
|
|
|
|
|
void subsystem::checkInsert(ReturnValue_t result, const char* ctx) {
|
2022-08-29 15:56:18 +02:00
|
|
|
if (result != returnvalue::OK) {
|
2022-04-28 16:20:41 +02:00
|
|
|
sif::warning << "satsystem::checkInsert: Insertion failed at " << ctx << std::endl;
|
|
|
|
}
|
|
|
|
}
|