Merge pull request #4096 from CodingKoopa/change-udp-log

udp: Change invalid packet message to Debug
This commit is contained in:
James Rowe
2018-08-12 20:47:14 -06:00
committed by GitHub

View File

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