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

reduced verbosity + debugobserver stuff

parent 14130e4c
No related branches found
No related tags found
1 merge request!129Debugging segmentation fault in spfa algorithm
...@@ -145,7 +145,7 @@ namespace armarx::navigation::memory::client::events ...@@ -145,7 +145,7 @@ namespace armarx::navigation::memory::client::events
{ {
static_assert(std::is_base_of<core::Event, EventT>::value, "Only events supported."); static_assert(std::is_base_of<core::Event, EventT>::value, "Only events supported.");
ARMARX_INFO << "Storing event `" << eventName << "` in memory."; ARMARX_VERBOSE << "Storing event `" << eventName << "` in memory.";
const auto& timestamp = event.timestamp; const auto& timestamp = event.timestamp;
......
...@@ -182,6 +182,7 @@ namespace armarx::navigation::platform_controller::platform_global_trajectory ...@@ -182,6 +182,7 @@ namespace armarx::navigation::platform_controller::platform_global_trajectory
datafields["vx"] = new Variant(debugStuff.target.linear.x()); datafields["vx"] = new Variant(debugStuff.target.linear.x());
datafields["vy"] = new Variant(debugStuff.target.linear.y()); datafields["vy"] = new Variant(debugStuff.target.linear.y());
datafields["v_linear"] = new Variant(debugStuff.target.linear.norm());
datafields["vyaw"] = new Variant(debugStuff.target.angular); datafields["vyaw"] = new Variant(debugStuff.target.angular);
datafields["trajectory_points"] = new Variant(config.targets.trajectory.points().size()); datafields["trajectory_points"] = new Variant(config.targets.trajectory.points().size());
......
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