From: Quentin Glidic Date: Sun, 12 Aug 2012 10:20:15 +0000 (+0200) Subject: libi3: Introduce LOG X-Git-Tag: 4.3~79 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9f7247fd9c5478f2c24c8e6fc713200e2c7cbc9e;p=i3%2Fi3 libi3: Introduce LOG --- diff --git a/include/libi3.h b/include/libi3.h index 7b58b96f..45ba970f 100644 --- a/include/libi3.h +++ b/include/libi3.h @@ -68,8 +68,11 @@ struct Font { /* Since this file also gets included by utilities which don’t use the i3 log * infrastructure, we define a fallback. */ +#if !defined(LOG) +#define LOG(fmt, ...) fprintf(stdout, "[libi3] " __FILE__ " " fmt, ##__VA_ARGS__) +#endif #if !defined(ELOG) -#define ELOG(fmt, ...) fprintf(stderr, "ERROR: " fmt, ##__VA_ARGS__) +#define ELOG(fmt, ...) fprintf(stderr, "[libi3] ERROR: " fmt, ##__VA_ARGS__) #endif /** diff --git a/include/log.h b/include/log.h index 26e85f04..7822fba5 100644 --- a/include/log.h +++ b/include/log.h @@ -13,14 +13,17 @@ #include #include -/** ##__VA_ARGS__ means: leave out __VA_ARGS__ completely if it is empty, that - is, delete the preceding comma */ -#define LOG(fmt, ...) verboselog(fmt, ##__VA_ARGS__) -/* We will include libi3.h which define its own version of ELOG. +/* We will include libi3.h which define its own version of LOG, ELOG. * We want *our* version, so we undef the libi3 one. */ +#if defined(LOG) +#undef LOG +#endif #if defined(ELOG) #undef ELOG #endif +/** ##__VA_ARGS__ means: leave out __VA_ARGS__ completely if it is empty, that + is, delete the preceding comma */ +#define LOG(fmt, ...) verboselog(fmt, ##__VA_ARGS__) #define ELOG(fmt, ...) errorlog("ERROR: " fmt, ##__VA_ARGS__) #define DLOG(fmt, ...) debuglog("%s:%s:%d - " fmt, I3__FILE__, __FUNCTION__, __LINE__, ##__VA_ARGS__)