UDP API printout debug level made higher

This commit is contained in:
Thulinma 2017-11-27 11:13:30 +01:00
parent b9a90b134d
commit 34965459aa

View file

@ -199,7 +199,7 @@ void Controller::handleUDPAPI(void * np){
Util::Procs::socketList.insert(uSock.getSock()); Util::Procs::socketList.insert(uSock.getSock());
while (Controller::conf.is_active){ while (Controller::conf.is_active){
if (uSock.Receive()){ if (uSock.Receive()){
INFO_MSG("UDP API: %s", uSock.data); MEDIUM_MSG("UDP API: %s", uSock.data);
JSON::Value Request = JSON::fromString(uSock.data, uSock.data_len); JSON::Value Request = JSON::fromString(uSock.data, uSock.data_len);
Request["minimal"] = true; Request["minimal"] = true;
JSON::Value Response; JSON::Value Response;