Crow/include/settings.h

22 lines
391 B
C
Raw Normal View History

#pragma once
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 */
/*
DEBUG = 0
INFO = 1
WARNING = 2
ERROR = 3
CRITICAL = 4
2014-09-12 03:16:37 +00:00
default to INFO
2014-05-20 22:30:51 +00:00
*/
2014-09-12 03:16:37 +00:00
#define CROW_LOG_LEVEL 1