diff --git a/esp3d/src/core/settings_esp3d.cpp b/esp3d/src/core/settings_esp3d.cpp index 874805ad..dccd5427 100644 --- a/esp3d/src/core/settings_esp3d.cpp +++ b/esp3d/src/core/settings_esp3d.cpp @@ -109,7 +109,7 @@ #define DEFAULT_NOTIFICATION_TYPE 0 #define DEFAULT_NOTIFICATION_TOKEN1 "" #define DEFAULT_NOTIFICATION_TOKEN2 "" -#define DEFAULT_NOTIFICATION_SETTINGS "#NONE#" +#define DEFAULT_NOTIFICATION_SETTINGS "" #define DEFAULT_AUTO_NOTIFICATION_STATE 1 diff --git a/esp3d/src/modules/websocket/websocket_server.cpp b/esp3d/src/modules/websocket/websocket_server.cpp index 0c4d68ae..bc290e11 100644 --- a/esp3d/src/modules/websocket/websocket_server.cpp +++ b/esp3d/src/modules/websocket/websocket_server.cpp @@ -105,11 +105,11 @@ void handle_Websocket_Terminal_Event(uint8_t num, uint8_t type, uint8_t * payloa break; case WStype_TEXT: //we do not expect any input - log_esp3d("[IGNORED][%u] get Text: %s port %d", num, payload, websocket_terminal_server.port()); + //log_esp3d("[IGNORED][%u] get Text: %s port %d", num, payload, websocket_terminal_server.port()); break; case WStype_BIN: //we do not expect any input - log_esp3d("[IGNORED][%u] get binary length: %u port %d", num, length, websocket_terminal_server.port()); + //log_esp3d("[IGNORED][%u] get binary length: %u port %d", num, length, websocket_terminal_server.port()); break; default: break;