1 #ifndef SRC_CONFIG_LOG_CONF_H_
2 #define SRC_CONFIG_LOG_CONF_H_
3 
4 #include "config/types.h"
5 
6 enum log_output {
7 	SYSLOG,
8 	CONSOLE
9 };
10 
11 extern const struct global_type gt_log_level;
12 extern const struct global_type gt_log_output;
13 extern const struct global_type gt_log_facility;
14 
15 #endif /* SRC_CONFIG_LOG_CONF_H_ */
16