From: Torsten Dreyer Date: Wed, 11 Mar 2015 21:28:23 +0000 (+0100) Subject: RunUriHandler: add some INFO logging for the requests X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f5f82c461f39ce27c2b2a4c2d3310122576e408f;p=flightgear.git RunUriHandler: add some INFO logging for the requests --- diff --git a/src/Network/http/RunUriHandler.cxx b/src/Network/http/RunUriHandler.cxx index 09252fdfd..1b3f7005c 100644 --- a/src/Network/http/RunUriHandler.cxx +++ b/src/Network/http/RunUriHandler.cxx @@ -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.";