Sfoglia il codice sorgente

input/udp - Dont log on invalid packet received

James Rowe 6 anni fa
parent
commit
2cdda8c564
1 ha cambiato i file con 0 aggiunte e 1 eliminazioni
  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{};