SW Task Event Loop Framework v1.0.0
High-performance C++ asynchronous event loop framework with timer management and promise-based programming
Loading...
Searching...
No Matches
Log.h
Go to the documentation of this file.
1#ifndef LOG_HPP
2#define LOG_HPP
3
4//#define TIGER_DLT 1
5#if TIGER_DLT
6#include "servicelayer/Log.h"
7#define LOG_TAG "Dispatcher"
8
9#else
10//https://stackoverflow.com/questions/98944/how-to-generate-a-newline-in-a-cpp-macro
11#define LOGI(...) do { } while (0)
12#endif
13
14#endif // LOG_HPP