mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-28 23:22:19 +03:00
8 lines
214 B
C++
8 lines
214 B
C++
|
|
#include "Utils\SerialPrint.h"
|
||
|
|
|
||
|
|
#include "Global.h"
|
||
|
|
|
||
|
|
|
||
|
|
void SerialPrint(String errorLevel, String module, String msg) {
|
||
|
|
Serial.println(prettyMillis(millis()) + " [" + errorLevel + "] [" + module + "] " + msg);
|
||
|
|
}
|