summaryrefslogtreecommitdiffstats
path: root/sub
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-21 21:41:18 +0100
committerwm4 <wm4@nowhere>2013-12-21 22:13:04 +0100
commiteba5d025d2ba682de358b792dd15e80529d6a0f1 (patch)
treeb4617680bce71ff4a44f113e967b3b5bbc651520 /sub
parent3fa584e2800fff5850e67a4018597cb707d9cc0b (diff)
downloadmpv-eba5d025d2ba682de358b792dd15e80529d6a0f1.tar.bz2
mpv-eba5d025d2ba682de358b792dd15e80529d6a0f1.tar.xz
msg: convert defines to enum
Also get rid of MSGL_HINT and the many MSGL_DBG* levels.
Diffstat (limited to 'sub')
-rw-r--r--sub/ass_mp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sub/ass_mp.c b/sub/ass_mp.c
index e77ce298dd..83d56e4fc6 100644
--- a/sub/ass_mp.c
+++ b/sub/ass_mp.c
@@ -209,8 +209,8 @@ static int map_ass_level[] = {
MSGL_V,
MSGL_V,
MSGL_V, // 5 application recommended level
- MSGL_DBG2,
- MSGL_DBG3, // 7 "verbose DEBUG"
+ MSGL_DEBUG,
+ MSGL_TRACE, // 7 "verbose DEBUG"
};
static void message_callback(int level, const char *format, va_list va, void *ctx)