summaryrefslogtreecommitdiffstats
path: root/common/av_log.c
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 /common/av_log.c
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 'common/av_log.c')
-rw-r--r--common/av_log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/av_log.c b/common/av_log.c
index 0ee39b3022..a6d51f88e3 100644
--- a/common/av_log.c
+++ b/common/av_log.c
@@ -69,7 +69,7 @@ static bool log_print_prefix = true;
static int av_log_level_to_mp_level(int av_level)
{
if (av_level > AV_LOG_VERBOSE)
- return MSGL_DBG2;
+ return MSGL_DEBUG;
if (av_level > AV_LOG_INFO)
return MSGL_V;
if (av_level > AV_LOG_WARNING)