Skip to content
Snippets Groups Projects
Commit 1b32fde4 authored by Your Name's avatar Your Name
Browse files

transform helper: reduced spamming

parent c43a6682
No related branches found
No related tags found
1 merge request!354Feature/armen laser scans update inc intensity
......@@ -258,19 +258,19 @@ namespace armarx::armem::common::robot_state::localization
}
catch (const armem::error::MissingEntry& missingEntryError)
{
ARMARX_WARNING << missingEntryError.what();
ARMARX_VERBOSE << missingEntryError.what();
}
catch (const ::armarx::exceptions::local::ExpressionException& ex)
{
ARMARX_WARNING << "Local expression exception: " << ex.what();
ARMARX_VERBOSE << "Local expression exception: " << ex.what();
}
catch (const ::armarx::LocalException& ex)
{
ARMARX_WARNING << "Local exception: " << ex.what();
ARMARX_VERBOSE << "Local exception: " << ex.what();
}
catch (...)
{
ARMARX_WARNING << "Unexpected error: " << GetHandledExceptionString();
ARMARX_VERBOSE << "Unexpected error: " << GetHandledExceptionString();
}
return {};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment