Explorar el Código

input/udp - Dont log on invalid packet received

James Rowe hace 6 años
padre
commit
2cdda8c564
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  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{};