Skip to content
Snippets Groups Projects
Commit 2e0f4417 authored by Idril-Tadzio Geer Cousté's avatar Idril-Tadzio Geer Cousté Committed by Joan Vallvé Navarro
Browse files

hotfix: hide unnecessary debugging messages

parent 9dabedc4
No related branches found
No related tags found
No related merge requests found
...@@ -156,9 +156,9 @@ void SubscriberImu::callback(const sensor_msgs::Imu::ConstPtr& msg) ...@@ -156,9 +156,9 @@ void SubscriberImu::callback(const sensor_msgs::Imu::ConstPtr& msg)
data(2) = data_orig(z_axis_-1)*z_axis_sgn_; data(2) = data_orig(z_axis_-1)*z_axis_sgn_;
data(5) = data_orig(z_axis_+2)*z_axis_sgn_; data(5) = data_orig(z_axis_+2)*z_axis_sgn_;
WOLF_INFO("x_axis_ = ", x_axis_, " y_axis_ = ", y_axis_, " z_axis_ = ", z_axis_); WOLF_DEBUG("x_axis_ = ", x_axis_, " y_axis_ = ", y_axis_, " z_axis_ = ", z_axis_);
WOLF_INFO("data_orig = ", data_orig.transpose()); WOLF_DEBUG("data_orig = ", data_orig.transpose());
WOLF_INFO("data = ", data.transpose()); WOLF_DEBUG("data = ", data.transpose());
if (in_degrees_) if (in_degrees_)
......
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