Skip to content

Commit fed1add

Browse files
committed
reduce debug messages
1 parent 4ecf41d commit fed1add

File tree

6 files changed

+17
-7
lines changed

6 files changed

+17
-7
lines changed

changeNew.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# v0.0.6
1+
# v0.0.7
22

33
## what's new
44

55
## changelog
66

7-
[ADD] Colorize logger messages depending on log level
7+
[CHANGE] reduce debug messages

changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# v0.0.7
2+
3+
## what's new
4+
5+
## changelog
6+
7+
[CHANGE] reduce debug messages
8+
9+
---
10+
111
# v0.0.6
212

313
## what's new

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EspWebUI",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "ESP WebUI Framework Library",
55
"keywords": ["esp32", "webserver", "framework"],
66
"repository": {

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=EspWebUI
2-
version=0.0.6
2+
version=0.0.7
33
author=dewenni
44
maintainer=dewenni
55
sentence=ESP WebUI Framework Library

src/helper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void EspWebUI::generateSessionToken(char *token, size_t length) {
3535
bool EspWebUI::isAuthenticated(AsyncWebServerRequest *request) {
3636

3737
if (config.enableAuth == false) {
38-
ESP_LOGD(TAG, "authentication disabled");
38+
// ESP_LOGD(TAG, "authentication disabled");
3939
return true;
4040
}
4141

src/routes.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ void EspWebUI::sendGzipChunkedResponse(AsyncWebServerRequest *request, const uin
2626
return;
2727
}
2828

29-
ESP_LOGD(TAG, "sending: %s", request->url().c_str());
30-
// Create a chunked response with the specified chunk size
29+
// ESP_LOGD(TAG, "sending: %s", request->url().c_str());
30+
// Create a chunked response with the specified chunk size
3131
AsyncWebServerResponse *response =
3232
request->beginChunkedResponse(contentType, [content, contentLength, chunkSize](uint8_t *buffer, size_t maxLen, size_t index) -> size_t {
3333
// Check if we have reached the end of the file

0 commit comments

Comments
 (0)