diff --git a/src/main.lua b/src/main.lua index f872e78..0364251 100644 --- a/src/main.lua +++ b/src/main.lua @@ -183,12 +183,6 @@ end local response, err = rq:handle() - - local utils = require('util.utils') - local log = require('util.logger') - log:info("Main (request handled") - log:info(" response.postResponseQueue: "..utils.dump(response.postResponseQueue)) - if err ~= nil then log:error(err) end response:send() diff --git a/src/rest/api/api_network.lua b/src/rest/api/api_network.lua index 132f27b..a385a65 100644 --- a/src/rest/api/api_network.lua +++ b/src/rest/api/api_network.lua @@ -108,7 +108,7 @@ function M.associate_POST(request, response) local associate = function() local rv,msg = netconf.associateSsid(argSsid, argPhrase, argRecreate) end - --response:addPostResponseFunction(associate) + response:addPostResponseFunction(associate) local helloA = function() local log = require('util.logger')