summaryrefslogtreecommitdiff
path: root/doc/fftools-common-opts.texi
diff options
context:
space:
mode:
authorLou Logan <lou@lrcd.com>2014-12-05 12:32:35 -0900
committerLou Logan <lou@lrcd.com>2014-12-10 16:45:31 -0900
commit55c5a38369c1a84ed8b7ba1cb89ad1020e1bc540 (patch)
tree356d62b4733d507ad44feac4eff913e56f0309b9 /doc/fftools-common-opts.texi
parent7ee5f764ee6cbdff67e04f7959acedff80fcd59b (diff)
downloadffmpeg-55c5a38369c1a84ed8b7ba1cb89ad1020e1bc540.tar.gz
doc: add loglevel numerical values
Useful for setting FFREPORT log level. Signed-off-by: Lou Logan <lou@lrcd.com>
Diffstat (limited to 'doc/fftools-common-opts.texi')
-rw-r--r--doc/fftools-common-opts.texi18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/fftools-common-opts.texi b/doc/fftools-common-opts.texi
index 0e8f849b9d..54d1888e69 100644
--- a/doc/fftools-common-opts.texi
+++ b/doc/fftools-common-opts.texi
@@ -165,27 +165,27 @@ omitted. "repeat" can also be used alone.
If "repeat" is used alone, and with no prior loglevel set, the default
loglevel will be used. If multiple loglevel parameters are given, using
'repeat' will not change the loglevel.
-@var{loglevel} is a number or a string containing one of the following values:
+@var{loglevel} is a string or a number containing one of the following values:
@table @samp
-@item quiet
+@item quiet, -8
Show nothing at all; be silent.
-@item panic
+@item panic, 0
Only show fatal errors which could lead the process to crash, such as
and assert failure. This is not currently used for anything.
-@item fatal
+@item fatal, 8
Only show fatal errors. These are errors after which the process absolutely
cannot continue after.
-@item error
+@item error, 16
Show all errors, including ones which can be recovered from.
-@item warning
+@item warning, 24
Show all warnings and errors. Any message related to possibly
incorrect or unexpected events will be shown.
-@item info
+@item info, 32
Show informative messages during processing. This is in addition to
warnings and errors. This is the default value.
-@item verbose
+@item verbose, 40
Same as @code{info}, except more verbose.
-@item debug
+@item debug, 48
Show everything, including debugging information.
@end table