Change level of invalid UDP packet log message from Error to Debug.

This commit is contained in:
CodingKoopa 2018-08-12 22:17:34 -04:00
parent 106ef861bb
commit 8cbb60c281
1 changed files with 1 additions and 1 deletions

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;