aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2020-03-03 19:52:06 -0700
committerJames Rowe <jroweboy@gmail.com>2020-03-03 19:52:16 -0700
commit2cdda8c564eba94f0291160567aba7204f855242 (patch)
treeab4aa4ee00065802f95ab51dbe667c6af531d44c
parent08c638f249e0cdde1afa2da31b1176d3b0ab4faf (diff)
input/udp - Dont log on invalid packet received
-rw-r--r--src/input_common/udp/protocol.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/input_common/udp/protocol.cpp b/src/input_common/udp/protocol.cpp
index a982ac49de..5e50bd6129 100644
--- a/src/input_common/udp/protocol.cpp
+++ b/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{};