From 5a7d8377d15c506511b0cd416360f8d1d06ee1ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joni=20R=C3=A4s=C3=A4nen?= Date: Thu, 30 Sep 2021 10:31:42 +0300 Subject: [PATCH] common: Print the library name in debug --- include/debug.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/debug.hh b/include/debug.hh index d98aa29..42b3956 100644 --- a/include/debug.hh +++ b/include/debug.hh @@ -52,7 +52,7 @@ static inline void win_get_last_error(void) #define LOG_LEVEL_DEBUG "DEBUG" #define uvgrtp_debug(level, fmt, ...) \ - fprintf(stderr, "[RTPLIB][%s][%s::%s] " fmt "\n", level, \ + fprintf(stderr, "[uvgRTP][%s][%s::%s] " fmt "\n", level, \ "", __func__, ##__VA_ARGS__) #ifndef NDEBUG