Files
IoTManager/src/utils/SerialPrint.cpp

17 lines
422 B
C++
Raw Normal View History

#include "utils/SerialPrint.h"
void SerialPrint(String errorLevel, String module, String msg) {
String tosend;
tosend = prettyMillis(millis());
tosend = tosend + " [" + errorLevel + "] [" + module + "] " + msg;
Serial.println(tosend);
if (isNetworkActive()) {
if (jsonReadInt(settingsFlashJson, F("log")) != 0) {
standWebSocket.broadcastTXT("/log|" + tosend);
}
}
}