Files
IoTManager/src/Utils/SerialPrint.cpp

8 lines
214 B
C++
Raw Normal View History

2020-09-17 17:27:44 +03:00
#include "Utils\SerialPrint.h"
#include "Global.h"
void SerialPrint(String errorLevel, String module, String msg) {
Serial.println(prettyMillis(millis()) + " [" + errorLevel + "] [" + module + "] " + msg);
}