mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
2c26b6c1de
- disable crow debug mode by default - expose `loglevel` method on `App` to change the logging level easily - add a startup message that guides how to change the logging level
39 lines
663 B
C
39 lines
663 B
C
#pragma once
|
|
// settings for crow
|
|
// TODO - replace with runtime config. libucl?
|
|
|
|
/* #ifdef - enables debug mode */
|
|
//#define CROW_ENABLE_DEBUG
|
|
|
|
/* #ifdef - enables logging */
|
|
#define CROW_ENABLE_LOGGING
|
|
|
|
/* #ifdef - enables ssl */
|
|
//#define CROW_ENABLE_SSL
|
|
|
|
/* #define - specifies log level */
|
|
/*
|
|
Debug = 0
|
|
Info = 1
|
|
Warning = 2
|
|
Error = 3
|
|
Critical = 4
|
|
|
|
default to INFO
|
|
*/
|
|
#define CROW_LOG_LEVEL 1
|
|
|
|
|
|
// compiler flags
|
|
#if __cplusplus >= 201402L
|
|
#define CROW_CAN_USE_CPP14
|
|
#endif
|
|
|
|
#if defined(_MSC_VER)
|
|
#if _MSC_VER < 1900
|
|
#define CROW_MSVC_WORKAROUND
|
|
#define constexpr const
|
|
#define noexcept throw()
|
|
#endif
|
|
#endif
|