mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-28 07:02:17 +03:00
9 lines
259 B
C++
9 lines
259 B
C++
|
|
#include "Utils\SerialPrint.h"
|
||
|
|
|
||
|
|
#include "Global.h"
|
||
|
|
|
||
|
|
void SerialPrint(String errorLevel, String module, String msg) {
|
||
|
|
//if (module == "MySensor") {
|
||
|
|
Serial.println(prettyMillis(millis()) + " [" + errorLevel + "] [" + module + "] " + msg);
|
||
|
|
//}
|
||
|
|
}
|