Files
CPP_Core/Core/Serial/Serial_p.h
T
2026-06-16 10:56:40 +08:00

16 lines
278 B
C++

#ifndef yC_SERIAL_P_H
#define yC_SERIAL_P_H
#include "../../Core/spdlog/export.h"
#include "Serial.h"
void serial_log(Log_Type& log_type, const std::string& MSG);
#define LOG_ERROR(MSG) static Log_Type log_type({}, {{"POS", LOG_POS}});\
serial_log(log_type, MSG);
#endif