diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2019-12-16 13:08:40 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2019-12-16 20:53:27 +0100 |
commit | 84db67894f9aec4aa0c8df67265019e0391c7572 (patch) | |
tree | a0df0ecd6d30600085af302a7af1e9c05e99d3d4 /libavutil/log.c | |
parent | c07a77247363eb666a49536af505e7317225ee81 (diff) | |
download | ffmpeg-84db67894f9aec4aa0c8df67265019e0391c7572.tar.gz |
lavu/log: Also print the log level for level trace.
Diffstat (limited to 'libavutil/log.c')
-rw-r--r-- | libavutil/log.c | 2 |
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: |