mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-08-01 02:32:03 +08:00

* Fix Rename not working on GlobalFS * esp3d_log refactoring - Rename Debug to Log - Allow now 4 level of log: None, Error, Debug, Verbose - Change original verbose log to error log when it is an error * Update configuration.h to add debug level expected * Add log for critical steps in FTP module
59 lines
2.1 KiB
C++
59 lines
2.1 KiB
C++
/*
|
|
log_esp3d.cpp - log esp3d functions class
|
|
|
|
Copyright (c) 2014 Luc Lebosse. All rights reserved.
|
|
|
|
This code is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This code is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with This code; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "../include/esp3d_config.h"
|
|
#if defined(ESP_LOG_FEATURE)
|
|
|
|
#ifndef LOG_ESP3D_BAUDRATE
|
|
#define LOG_ESP3D_BAUDRATE 115200
|
|
#endif //~LOG_ESP3D_BAUDRATE
|
|
|
|
void initEsp3dLog() {
|
|
#if (ESP_LOG_FEATURE == LOG_OUTPUT_SERIAL0) || \
|
|
(ESP_LOG_FEATURE == LOG_OUTPUT_SERIAL1) || \
|
|
(ESP_LOG_FEATURE == LOG_OUTPUT_SERIAL2)
|
|
#ifdef ARDUINO_ARCH_ESP8266
|
|
LOG_OUTPUT_SERIAL.begin(LOG_ESP3D_BAUDRATE, SERIAL_8N1, SERIAL_FULL,
|
|
(ESP_LOG_TX_PIN == -1) ? 1 : ESP_LOG_TX_PIN);
|
|
#if ESP_LOG_RX_PIN != -1
|
|
LOG_OUTPUT_SERIAL
|
|
.pins((ESP_LOG_TX_PIN == -1) ? 1 : ESP_LOG_TX_PIN, ESP_LOG_RX_PIN)
|
|
#endif // ESP_LOG_RX_PIN != -1
|
|
#endif // ARDUINO_ARCH_ESP8266
|
|
#if defined(ARDUINO_ARCH_ESP32)
|
|
LOG_OUTPUT_SERIAL.begin(LOG_ESP3D_BAUDRATE, SERIAL_8N1,
|
|
ESP_LOG_RX_PIN, ESP_LOG_TX_PIN);
|
|
#endif // ARDUINO_ARCH_ESP32
|
|
|
|
#endif // (ESP_LOG_FEATURE == LOG_OUTPUT_SERIAL0) || (ESP_LOG_FEATURE ==
|
|
// LOG_OUTPUT_SERIAL1)||(ESP_LOG_FEATURE == LOG_OUTPUT_SERIAL2)
|
|
}
|
|
|
|
// Telnet
|
|
#if ESP_LOG_FEATURE == LOG_OUTPUT_TELNET
|
|
Telnet_Server telnet_log;
|
|
#endif // ESP_LOG_FEATURE == LOG_OUTPUT_TELNET
|
|
|
|
// Websocket
|
|
#if ESP_LOG_FEATURE == LOG_OUTPUT_WEBSOCKET
|
|
WebSocket_Server websocket_log("log");
|
|
#endif // ESP_LOG_FEATURE == LOG_OUTPUT_WEBSOCKET
|
|
#endif // ESP_LOG_FEATURE
|