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
22
22
check_fix_by_variance_(true ),
23
23
frame_id_(" gps" )
24
24
{
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." );
29
28
}
30
29
31
30
bool start ()
@@ -66,7 +65,7 @@ namespace gpsd_client
66
65
return false ;
67
66
}
68
67
69
- RCLCPP_DEBUG (this ->get_logger (), " GPSd opened" );
68
+ RCLCPP_INFO (this ->get_logger (), " GPSd opened" );
70
69
return true ;
71
70
}
72
71
@@ -215,7 +214,7 @@ namespace gpsd_client
215
214
216
215
fix.status = status;
217
216
218
- RCLCPP_INFO (this ->get_logger (), " Publishing gps fix..." );
217
+ RCLCPP_DEBUG (this ->get_logger (), " Publishing gps fix..." );
219
218
gps_fix_pub_->publish (fix);
220
219
}
221
220
You can’t perform that action at this time.
0 commit comments