Skip to content

Commit

Permalink
core: ignore no known remotes (#2398)
Browse files Browse the repository at this point in the history
There is no point spamming the user about no known remotes. It's just
confusing and noisy until the remotes appear.
  • Loading branch information
julianoes committed Sep 11, 2024
1 parent b4160bb commit 2de3994
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/mavsdk/core/udp_connection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ bool UdpConnection::send_message(const mavlink_message_t& message)
std::lock_guard<std::mutex> lock(_remote_mutex);

if (_remotes.size() == 0) {
LogErr() << "No known remotes";
return false;
}

Expand Down

0 comments on commit 2de3994

Please sign in to comment.