iCub-main
Loading...
Searching...
No Matches
log.h
Go to the documentation of this file.
1#ifndef LOG_H
2#define LOG_H
3
4#ifdef QT_DEBUG
5#define LOG(...) qDebug(__VA_ARGS__)
6#else
7#define LOG(...) fprintf(stdout,__VA_ARGS__)
8#endif
9
10#ifdef QT_DEBUG
11#define LOG_ERROR(...) qDebug(__VA_ARGS__)
12#else
13#define LOG_ERROR(...) fprintf(stderr,__VA_ARGS__)
14#endif
15
16#endif // LOG_H