Skip to content

Commit

Permalink
print log and throw for non standard exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
saikishor committed Aug 29, 2024
1 parent 7ca9b6d commit 544f693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller_manager/src/controller_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ controller_interface::ControllerInterfaceBaseSharedPtr ControllerManager::load_c
get_logger(),
"Caught unknown exception while loading the controller '%s' of plugin type '%s'",
controller_name.c_str(), controller_type.c_str());
return nullptr;
throw;
}

ControllerSpec controller_spec;
Expand Down

0 comments on commit 544f693

Please sign in to comment.