2015-08-08 21:01:22 +00:00
|
|
|
#ifndef _SWAY_LOG_H
|
|
|
|
#define _SWAY_LOG_H
|
2015-08-18 21:38:34 +00:00
|
|
|
#include <stdbool.h>
|
2015-08-08 21:01:22 +00:00
|
|
|
|
|
|
|
typedef enum {
|
2015-08-10 19:09:51 +00:00
|
|
|
L_SILENT = 0,
|
|
|
|
L_ERROR = 1,
|
|
|
|
L_INFO = 2,
|
|
|
|
L_DEBUG = 3,
|
2015-08-08 21:01:22 +00:00
|
|
|
} log_importance_t;
|
|
|
|
|
2015-08-21 14:53:11 +00:00
|
|
|
void init_log(log_importance_t verbosity);
|
2015-10-26 12:41:45 +00:00
|
|
|
void set_log_level(log_importance_t verbosity);
|
2016-06-27 07:29:37 +00:00
|
|
|
log_importance_t get_log_level(void);
|
2015-10-26 12:41:45 +00:00
|
|
|
void reset_log_level(void);
|
|
|
|
// returns whether debug logging is on after switching.
|
|
|
|
bool toggle_debug_logging(void);
|
2015-08-09 18:35:56 +00:00
|
|
|
void sway_log_colors(int mode);
|
2015-08-21 14:53:11 +00:00
|
|
|
void sway_log_errno(log_importance_t verbosity, char* format, ...) __attribute__((format(printf,2,3)));
|
2017-04-20 16:13:53 +00:00
|
|
|
|
|
|
|
void _sway_abort(const char *filename, int line, const char* format, ...) __attribute__((format(printf,3,4)));
|
|
|
|
#define sway_abort(FMT, ...) \
|
|
|
|
_sway_abort(__FILE__, __LINE__, FMT, ##__VA_ARGS__)
|
2015-08-26 18:01:26 +00:00
|
|
|
|
2017-04-16 09:07:43 +00:00
|
|
|
bool _sway_assert(bool condition, const char *filename, int line, const char* format, ...) __attribute__((format(printf,4,5)));
|
2015-08-26 18:01:26 +00:00
|
|
|
#define sway_assert(COND, FMT, ...) \
|
2017-04-16 09:07:43 +00:00
|
|
|
_sway_assert(COND, __FILE__, __LINE__, "%s:" FMT, __PRETTY_FUNCTION__, ##__VA_ARGS__)
|
2015-08-26 18:01:26 +00:00
|
|
|
|
2015-11-11 13:32:32 +00:00
|
|
|
void _sway_log(const char *filename, int line, log_importance_t verbosity, const char* format, ...) __attribute__((format(printf,4,5)));
|
2016-05-02 14:10:22 +00:00
|
|
|
|
2015-11-11 13:32:32 +00:00
|
|
|
#define sway_log(VERBOSITY, FMT, ...) \
|
|
|
|
_sway_log(__FILE__, __LINE__, VERBOSITY, FMT, ##__VA_ARGS__)
|
|
|
|
|
2017-04-16 07:30:17 +00:00
|
|
|
#define sway_vlog(VERBOSITY, FMT, VA_ARGS) \
|
|
|
|
_sway_vlog(__FILE__, __LINE__, VERBOSITY, FMT, VA_ARGS)
|
|
|
|
|
2015-08-24 20:44:58 +00:00
|
|
|
void error_handler(int sig);
|
2015-08-08 21:01:22 +00:00
|
|
|
|
|
|
|
#endif
|