Skip to content

Commit 8d9dd4f

Browse files
authored
Commented Logging Function
Commented Logging Function to resolve compilation issue.
1 parent de1876c commit 8d9dd4f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/WebsocketHandler.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ static void dumpFrame(WebsocketFrame frame) {
1616
case WebsocketHandler::OPCODE_PONG: opcode = std::string("PONG"); break;
1717
case WebsocketHandler::OPCODE_TEXT: opcode = std::string("TEXT"); break;
1818
}
19-
ESP_LOGI(
19+
/* Commenting logging function to resolve compilation
20+
ESP_LOGI(
2021
TAG,
2122
"Fin: %d, OpCode: %d (%s), Mask: %d, Len: %d",
2223
(int)frame.fin,
@@ -25,6 +26,7 @@ static void dumpFrame(WebsocketFrame frame) {
2526
(int)frame.mask,
2627
(int)frame.len
2728
);
29+
*/
2830
}
2931

3032
WebsocketHandler::WebsocketHandler() {

0 commit comments

Comments
 (0)