sway/include/log.h

40 lines
1.3 KiB
C
Raw Normal View History

#ifndef _SWAY_LOG_H
#define _SWAY_LOG_H
#include <stdbool.h>
typedef enum {
2015-08-10 19:09:51 +00:00
L_SILENT = 0,
L_ERROR = 1,
L_INFO = 2,
L_DEBUG = 3,
} log_importance_t;
2015-08-21 14:53:11 +00:00
void init_log(log_importance_t verbosity);
void set_log_level(log_importance_t verbosity);
log_importance_t get_log_level(void);
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
void _sway_log(const char *filename, int line, log_importance_t verbosity, const char* format, ...) __attribute__((format(printf,4,5)));
#define sway_log(VERBOSITY, FMT, ...) \
_sway_log(__FILE__, __LINE__, VERBOSITY, FMT, ##__VA_ARGS__)
#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);
#endif