Fenix @develop
 
Loading...
Searching...
No Matches
util.h
1#ifndef FENIX_LOGGING_UTIL_H
2#define FENIX_LOGGING_UTIL_H
3
4#include "fenix_opt.hpp"
5
6//#define FENIX_MESSAGE_LOG_VERBOSE
7
8#ifdef FENIX_MESSAGE_LOG_VERBOSE
9#define MLOG(...) debug_print(__VA_ARGS__);
10#else
11#define MLOG(...)
12#endif
13
14#endif