diff --git a/lib/core/Proxy.js b/lib/core/Proxy.js index 98b1fac..532b4dc 100644 --- a/lib/core/Proxy.js +++ b/lib/core/Proxy.js @@ -63,7 +63,7 @@ class Proxy { method: request.method, headers: request.headers, }; - logger.info(`${HTTPLOG} Received http request ${options}`); + logger.info(`${HTTPLOG} Received http request ${JSON.stringify(options)}`); if(request.url.indexOf('/status') > -1){ response.writeHead(200, {'content-type': 'application/json; charset=utf-8', 'accept': 'application/json', 'WWW-Authenticate': 'Basic realm="WS Reconnect Proxy"'}); response.end(JSON.stringify({"status" : "Running"}));