X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=src%2Flog.c;h=b3c2083b7f822ab2cdb896f7552f144cd2439806;hb=d87efa4a7a6285603950f5780ef57a72b651c8e9;hp=4dc53f78124b08c621abd33f8123b31fa7e77309;hpb=f3ca90e517a9ae54e831e5a5b91fcc2afb9df5bf;p=tlsproxy%2Ftlsproxy.git diff --git a/src/log.c b/src/log.c index 4dc53f7..b3c2083 100644 --- a/src/log.c +++ b/src/log.c @@ -45,18 +45,13 @@ void log_message(int level, const char *file, int line, const char *format, ...) (void)line; #endif - /* Prevent another thread from interrupting the two printfs(). */ + /* Prevent another thread from interrupting the printfs(). */ flockfile(stderr); - fprintf(stderr, #ifdef DEBUG - "%-12s:%-3d " + fprintf(stderr, "%-12s:%-3d ", file, line); #endif - "[%s] [%d] ", -#ifdef DEBUG - file, line, -#endif - level_string, (int)pthread_self()); + fprintf(stderr, "[%s] [%d] ", level_string, (int)pthread_self()); va_start(ap, format); vfprintf(stderr, format, ap); va_end(ap);