From accb59d93ad1547e32760184324f82366a4c9be4 Mon Sep 17 00:00:00 2001 From: Hieromon Ikasamo Date: Mon, 24 Dec 2018 17:00:03 +0900 Subject: [PATCH] Minor fix of debugs messages. --- src/AutoConnect.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/AutoConnect.cpp b/src/AutoConnect.cpp index 3b5ba11..671f81d 100644 --- a/src/AutoConnect.cpp +++ b/src/AutoConnect.cpp @@ -657,8 +657,8 @@ String AutoConnect::_invokeResult(PageArgument& args) { bool AutoConnect::_classifyHandle(HTTPMethod method, String uri) { AC_DBG("Host:%s, URI:%s", _webServer->hostHeader().c_str(), uri.c_str()); - // At the time when handleClient calls RequestHandler, the parsed http - // argument remains the last one in the request. + // When handleClient calls RequestHandler, the parsed http argument remains + // the previous request. // If the current request argument contains AutoConnectElement, it is // the form data of the AutoConnectAux page and with this timing save // the value of each element. @@ -677,7 +677,7 @@ bool AutoConnect::_classifyHandle(HTTPMethod method, String uri) { // Here, classify requested uri if (uri == _uri) { - AC_DBG_DUMB(", already allocated\n", _uri.c_str()); + AC_DBG_DUMB(", already allocated\n"); return true; // The response page already exists. }