summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-12-16 13:08:40 +0100
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-12-16 20:53:27 +0100
commit84db67894f9aec4aa0c8df67265019e0391c7572 (patch)
treea0df0ecd6d30600085af302a7af1e9c05e99d3d4 /libavutil
parentc07a77247363eb666a49536af505e7317225ee81 (diff)
lavu/log: Also print the log level for level trace.
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/log.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/log.c b/libavutil/log.c
index 93a156b8e4..e8a0db7716 100644
--- a/libavutil/log.c
+++ b/libavutil/log.c
@@ -226,6 +226,8 @@ static const char *get_level_str(int level)
return "quiet";
case AV_LOG_DEBUG:
return "debug";
+ case AV_LOG_TRACE:
+ return "trace";
case AV_LOG_VERBOSE:
return "verbose";
case AV_LOG_INFO: