1
0
Fork 0

RunUriHandler: add some INFO logging for the requests

This commit is contained in:
Torsten Dreyer 2015-03-11 22:28:23 +01:00
parent 956054afe7
commit f5f82c461f

View file

@ -47,6 +47,8 @@ bool RunUriHandler::handleRequest( const HTTPRequest & request, HTTPResponse & r
cJSON * json = cJSON_Parse( request.Content.c_str() );
JSON::toProp( json, args );
SG_LOG( SG_NETWORK, SG_INFO, "RunUriHandler("<< request.Content << "): command='" << command << "', arg='" << JSON::toJsonString(false,args,5) << "'");
cJSON_Delete( json );
if ( globals->get_commands()->execute(command.c_str(), args) ) {
response.Content = "ok.";