From 063d7a7d8117271b084f18f925143d723381cf78 Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Sun, 2 Jan 2022 22:17:26 -0800 Subject: [PATCH] Cleanup API endpoint debug output --- src/mesh/http/ContentHandler.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mesh/http/ContentHandler.cpp b/src/mesh/http/ContentHandler.cpp index 3e35ee5fd..c051e0cda 100644 --- a/src/mesh/http/ContentHandler.cpp +++ b/src/mesh/http/ContentHandler.cpp @@ -172,7 +172,7 @@ void registerHandlers(HTTPServer *insecureServer, HTTPSServer *secureServer) void handleAPIv1FromRadio(HTTPRequest *req, HTTPResponse *res) { - DEBUG_MSG("+++++++++++++++ webAPI handleAPIv1FromRadio\n"); + DEBUG_MSG("webAPI handleAPIv1FromRadio\n"); /* For documentation, see: @@ -217,12 +217,12 @@ void handleAPIv1FromRadio(HTTPRequest *req, HTTPResponse *res) res->write(txBuf, len); } - DEBUG_MSG("--------------- webAPI handleAPIv1FromRadio, len %d\n", len); + DEBUG_MSG("webAPI handleAPIv1FromRadio, len %d\n", len); } void handleAPIv1ToRadio(HTTPRequest *req, HTTPResponse *res) { - DEBUG_MSG("+++++++++++++++ webAPI handleAPIv1ToRadio\n"); + DEBUG_MSG("webAPI handleAPIv1ToRadio\n"); /* For documentation, see: @@ -249,7 +249,7 @@ void handleAPIv1ToRadio(HTTPRequest *req, HTTPResponse *res) webAPI.handleToRadio(buffer, s); res->write(buffer, s); - DEBUG_MSG("--------------- webAPI handleAPIv1ToRadio\n"); + DEBUG_MSG("webAPI handleAPIv1ToRadio\n"); } void handleSpiffsBrowseStatic(HTTPRequest *req, HTTPResponse *res)