summaryrefslogtreecommitdiff
path: root/include/kitchensink/internal/utils/kitlog.h
blob: 1a56e53c3042962ee9e8e9d14ecd3b907653bfc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef KITLOG_H
#define KITLOG_H

#ifdef NDEBUG
    #define LOG(...)
#else
    #include <stdio.h>
    #define LOG(...) fprintf(stderr, __VA_ARGS__)
#endif

#endif // KITLOG_H