Commit 84db6789 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavu/log: Also print the log level for level trace.

parent c07a7724
...@@ -226,6 +226,8 @@ static const char *get_level_str(int level) ...@@ -226,6 +226,8 @@ static const char *get_level_str(int level)
return "quiet"; return "quiet";
case AV_LOG_DEBUG: case AV_LOG_DEBUG:
return "debug"; return "debug";
case AV_LOG_TRACE:
return "trace";
case AV_LOG_VERBOSE: case AV_LOG_VERBOSE:
return "verbose"; return "verbose";
case AV_LOG_INFO: case AV_LOG_INFO:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment