Skip to content

Commit

Permalink
endpoint.cpp: reduce verbosity for "%u incomplete messages in the las…
Browse files Browse the repository at this point in the history
…t %d seconds"

To avoid spamming the log.
  • Loading branch information
bkueng committed Sep 10, 2024
1 parent 991b706 commit debe52d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mavlink-router/endpoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ uint8_t Endpoint::get_trimmed_zeros(const mavlink_msg_entry_t *msg_entry, const
void Endpoint::log_aggregate(unsigned int interval_sec)
{
if (_incomplete_msgs > 0) {
log_warning("Endpoint %s [%d]: %u incomplete messages in the last %d seconds", _name.c_str(), fd,
log_debug("Endpoint %s [%d]: %u incomplete messages in the last %d seconds", _name.c_str(), fd,
_incomplete_msgs, interval_sec);
_incomplete_msgs = 0;
}
Expand Down

0 comments on commit debe52d

Please sign in to comment.