From 22cf0f5f4ac14b279cea5096d259095ca885dd0c Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Tue, 2 Jul 2024 00:54:37 -0400 Subject: [PATCH] Make docstring better --- av/logging.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/av/logging.pyx b/av/logging.pyx index adeed7ac6..6b6858db6 100644 --- a/av/logging.pyx +++ b/av/logging.pyx @@ -120,12 +120,12 @@ def set_level(level): def set_libav_level(level): - """Sets libAV's log level. It can be set to constants available in this + """Set libav's log level. It can be set to constants available in this module: ``PANIC``, ``FATAL``, ``ERROR``, ``WARNING``, ``INFO``, ``VERBOSE``, ``DEBUG``. - If PyAV logging is not enabled, setting the level of ffpmeg will change - the logs printed to terminal. + When PyAV logging is disabled, setting this will change the level of + the logs printed to the terminal. """ lib.av_log_set_level(level)