From cee4eeaaf788c24c2f53d6b5326ff7394b6f91bf Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Wed, 11 Sep 2024 13:12:40 +1200 Subject: [PATCH] core: ignore no known remotes (#2399) There is no point spamming the user about no known remotes. It's just confusing and noisy until the remotes appear. --- src/mavsdk/core/udp_connection.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/mavsdk/core/udp_connection.cpp b/src/mavsdk/core/udp_connection.cpp index 84c0deadb..ab5998d4b 100644 --- a/src/mavsdk/core/udp_connection.cpp +++ b/src/mavsdk/core/udp_connection.cpp @@ -116,7 +116,6 @@ bool UdpConnection::send_message(const mavlink_message_t& message) std::lock_guard lock(_remote_mutex); if (_remotes.size() == 0) { - LogErr() << "No known remotes"; return false; }