1
0
forked from fsfw/fsfw

health helper optional, diagnostic output improved

This commit is contained in:
2020-06-06 12:59:43 +02:00
parent d35524ecbc
commit 5289497ab5
5 changed files with 39 additions and 14 deletions

View File

@ -69,9 +69,10 @@ void ObjectManager::initialize() {
return_value = it.second->initialize();
if ( return_value != RETURN_OK ) {
object_id_t var = it.first;
sif::error << "Object 0x" << std::hex << std::setw(8) <<
std::setfill('0')<< var << " failed to initialize " <<
"with code 0x" << return_value << std::dec << std::endl;
sif::error << "ObjectManager::initialize: Object 0x" << std::hex <<
std::setw(8) << std::setfill('0')<< var << " failed to "
"initialize with code 0x" << return_value << std::dec <<
std::endl;
error_count++;
}
}