18 lines
360 B
C
18 lines
360 B
C
#ifndef APPCONFIG_H
|
|
#define APPCONFIG_H
|
|
|
|
/*
|
|
* This file contains all the configuration parameters linked to the main application.
|
|
*/
|
|
|
|
/*
|
|
* Define which logs to display :
|
|
*/
|
|
|
|
#define LOG_ENABLE_ERROR (1)
|
|
#define LOG_ENABLE_WARNING (1)
|
|
#define LOG_ENABLE_INFO (1)
|
|
#define LOG_ENABLE_TRACE (1)
|
|
#define LOG_ENABLE_DEBUG (1)
|
|
|
|
#endif //APPCONFIG_H
|