Files
CPP_Core/Core/Serial/Serial_p.h
T
2026-06-29 09:40:55 +08:00

12 lines
347 B
C++

#pragma once
#include <string_view>
#include "../../Core/spdlog/export.h"
#include "Serial.h"
void serial_log(Log_Type &log_type, std::string_view MSG);
#define LOG_ERROR(MSG) \
static Log_Type log_type({}, {{"POS", LOG_POS}}); \
serial_log(log_type, MSG);