File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,9 @@ namespace gpsd_client
2222 check_fix_by_variance_(true ),
2323 frame_id_(" gps" )
2424 {
25- timer_ = create_wall_timer (
26- 1s, std::bind (&GPSDClientComponent::step, this ));
27- start ();
28- RCLCPP_INFO (this ->get_logger (), " Instantiated." );
25+ timer_ = create_wall_timer (1s, std::bind (&GPSDClientComponent::step, this ));
26+ start ();
27+ RCLCPP_INFO (this ->get_logger (), " Instantiated." );
2928 }
3029
3130 bool start ()
@@ -66,7 +65,7 @@ namespace gpsd_client
6665 return false ;
6766 }
6867
69- RCLCPP_DEBUG (this ->get_logger (), " GPSd opened" );
68+ RCLCPP_INFO (this ->get_logger (), " GPSd opened" );
7069 return true ;
7170 }
7271
@@ -215,7 +214,7 @@ namespace gpsd_client
215214
216215 fix.status = status;
217216
218- RCLCPP_INFO (this ->get_logger (), " Publishing gps fix..." );
217+ RCLCPP_DEBUG (this ->get_logger (), " Publishing gps fix..." );
219218 gps_fix_pub_->publish (fix);
220219 }
221220
You can’t perform that action at this time.
0 commit comments