From: greg Date: Thu, 18 Jun 2009 12:41:02 +0000 (+0200) Subject: Do not print message level of a string (bloats output) and change the X-Git-Tag: 0.9.7~113 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1065a398595a2d947bd2dcb549a838b0fbcd378;p=libass Do not print message level of a string (bloats output) and change the message level to MSGL_INFO. --- diff --git a/libass/mputils.c b/libass/mputils.c index 9217e38..0853178 100644 --- a/libass/mputils.c +++ b/libass/mputils.c @@ -15,8 +15,7 @@ void my_mp_msg(int lvl, char *lvl_str, char *fmt, ...) { va_list va; - if(lvl > MSGL_V) return; - printf("[ass] **%s**: ", lvl_str); + if(lvl > MSGL_INFO) return; va_start(va, fmt); vprintf(fmt, va); va_end(va);