Skip to content
Snippets Groups Projects
Commit ae07655c authored by Fabian Reister's avatar Fabian Reister
Browse files

Merge branch...

Merge branch 'transform-helper-print-local-exceptions-that-are-not-expression-exceptions' into 'master'

Also print error messages of local exceptions that are not expression exceptions

See merge request !304
parents 27663b4a 0a3e05d6
No related branches found
No related tags found
1 merge request!304Also print error messages of local exceptions that are not expression exceptions
......@@ -262,11 +262,15 @@ namespace armarx::armem::common::robot_state::localization
}
catch (const ::armarx::exceptions::local::ExpressionException& ex)
{
ARMARX_WARNING << "local exception: " << ex.what();
ARMARX_WARNING << "Local expression exception: " << ex.what();
}
catch (const ::armarx::LocalException& ex)
{
ARMARX_WARNING << "Local exception: " << ex.what();
}
catch (...)
{
ARMARX_WARNING << "Error: " << GetHandledExceptionString();
ARMARX_WARNING << "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