mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
18 lines
322 B
C
18 lines
322 B
C
// settings for crow
|
|
// TODO - replace with runtime config. libucl?
|
|
|
|
/* #ifdef - enables debug mode */
|
|
#define CROW_ENABLE_DEBUG
|
|
|
|
/* #ifdef - enables logging */
|
|
#define CROW_ENABLE_LOGGING
|
|
|
|
/* #define - specifies log level */
|
|
/*
|
|
CRITICAL = 0
|
|
ERROR = 1
|
|
WARNING = 2
|
|
INFO = 3
|
|
DEBUG = 4
|
|
*/
|
|
#define CROW_LOG_LEVEL 4 |