X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttngerr.h;h=2ba5b32b219f9c4d1066bfbeeced6bb419a6f6c1;hp=1feb6cc4ded1ba9ad9e7fb7a04db46cb43790449;hb=57d0d50175ef25d3171bb8be9e9c30aba77674fe;hpb=1d4b027abdef2dc52b41b05ec56c5046c5000c4c diff --git a/include/lttngerr.h b/include/lttngerr.h index 1feb6cc4d..2ba5b32b2 100644 --- a/include/lttngerr.h +++ b/include/lttngerr.h @@ -22,6 +22,10 @@ #include #include +/* Stringify the expansion of a define */ +#define XSTR(d) STR(d) +#define STR(s) #s + extern int opt_quiet; extern int opt_verbose; @@ -54,6 +58,6 @@ enum __lttng_print_type { #define ERR(fmt, args...) __lttng_print(PRINT_ERR, "Error: " fmt "\n", ## args) #define WARN(fmt, args...) __lttng_print(PRINT_WARN, "Warning: " fmt "\n", ## args) #define BUG(fmt, args...) __lttng_print(PRINT_BUG, "BUG: " fmt "\n", ## args) -#define DBG(fmt, args...) __lttng_print(PRINT_DBG, "DEBUG: " fmt "\n", ## args) +#define DBG(fmt, args...) __lttng_print(PRINT_DBG, "DEBUG: " fmt " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__) #endif /* _LTTNGERR_H */