Skip to content

Commit 8b9b4cf

Browse files
wip
1 parent e34bd86 commit 8b9b4cf

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

gpsd_client/src/client.cpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)