Quellcode durchsuchen

input/udp - Dont log on invalid packet received

James Rowe vor 6 Jahren
Ursprung
Commit
2cdda8c564
1 geänderte Dateien mit 0 neuen und 1 gelöschten Zeilen
  1. 0 1
      src/input_common/udp/protocol.cpp

+ 0 - 1
src/input_common/udp/protocol.cpp

@@ -31,7 +31,6 @@ namespace Response {
  */
 std::optional<Type> Validate(u8* data, std::size_t size) {
     if (size < sizeof(Header)) {
-        LOG_DEBUG(Input, "Invalid UDP packet received");
         return std::nullopt;
     }
     Header header{};