Crow/include/settings.h

18 lines
322 B
C
Raw Normal View History

2014-05-20 16:17:56 +00:00
// settings for crow
2014-05-20 22:30:51 +00:00
// TODO - replace with runtime config. libucl?
2014-05-20 16:17:56 +00:00
/* #ifdef - enables debug mode */
#define CROW_ENABLE_DEBUG
/* #ifdef - enables logging */
2014-05-20 22:30:51 +00:00
#define CROW_ENABLE_LOGGING
/* #define - specifies log level */
/*
CRITICAL = 0
ERROR = 1
WARNING = 2
INFO = 3
DEBUG = 4
*/
#define CROW_LOG_LEVEL 4