14 lines
240 B
C++
14 lines
240 B
C++
#pragma once
|
|
|
|
#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);
|
|
|
|
|