Skip to content
Snippets Groups Projects
Commit e32f7608 authored by armar-user's avatar armar-user
Browse files

Remove spam in transform helper

parent 601b6ba6
No related branches found
No related tags found
1 merge request!352Uncommited Changes on Armar6a-1
......@@ -258,19 +258,19 @@ namespace armarx::armem::common::robot_state::localization
}
catch (const armem::error::MissingEntry& missingEntryError)
{
ARMARX_WARNING << missingEntryError.what();
ARMARX_DEBUG << missingEntryError.what();
}
catch (const ::armarx::exceptions::local::ExpressionException& ex)
{
ARMARX_WARNING << "Local expression exception: " << ex.what();
ARMARX_DEBUG << "Local expression exception: " << ex.what();
}
catch (const ::armarx::LocalException& ex)
{
ARMARX_WARNING << "Local exception: " << ex.what();
ARMARX_DEBUG << "Local exception: " << ex.what();
}
catch (...)
{
ARMARX_WARNING << "Unexpected error: " << GetHandledExceptionString();
ARMARX_DEBUG << "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