mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 19:38:01 +03:00
common: refactor sway_log()
This removes most preprocessor logic, leaving it only it the header.
This commit is contained in:
parent
8a6b64e471
commit
cc9d1cacbb
2 changed files with 9 additions and 12 deletions
|
@ -22,14 +22,14 @@ bool _sway_assert(bool condition, const char* format, ...) __attribute__((format
|
|||
#define sway_assert(COND, FMT, ...) \
|
||||
_sway_assert(COND, "%s:" FMT, __PRETTY_FUNCTION__, ##__VA_ARGS__)
|
||||
|
||||
#ifndef NDEBUG
|
||||
void _sway_log(const char *filename, int line, log_importance_t verbosity, const char* format, ...) __attribute__((format(printf,4,5)));
|
||||
|
||||
#ifndef NDEBUG
|
||||
#define sway_log(VERBOSITY, FMT, ...) \
|
||||
_sway_log(__FILE__, __LINE__, VERBOSITY, FMT, ##__VA_ARGS__)
|
||||
#else
|
||||
void _sway_log(log_importance_t verbosity, const char* format, ...) __attribute__((format(printf,2,3)));
|
||||
#define sway_log(VERBOSITY, FMT, ...) \
|
||||
_sway_log(VERBOSITY, FMT, ##__VA_ARGS__)
|
||||
_sway_log(NULL, 0, VERBOSITY, FMT, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
void error_handler(int sig);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue