Skip to content

Commit 55da8c8

Browse files
committed
Fix grammar issues
1 parent d6ae316 commit 55da8c8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

av/logging.pyx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
"""
2-
FFmpeg has a logging system that it uses extensively. It's very noisy so PyAV turns it
3-
off by default. This, unfortunately has the effect of making raised errors having less
2+
FFmpeg has a logging system that it uses extensively. It's very noisy, so PyAV turns it
3+
off by default. This unfortunately has the effect of making raised errors have less
44
detailed messages. It's therefore recommended to use VERBOSE when developing.
55
66
.. _enable_logging:
77
88
Enabling Logging
99
~~~~~~~~~~~~~~~~~
1010
11-
You can hook the logging system with Python by setting the log level::
11+
You can hook into the logging system with Python by setting the log level::
1212
1313
import av
1414
@@ -25,10 +25,10 @@ quickly with::
2525
logging.basicConfig()
2626
2727
28-
Note that handling logs with Python sometimes doesn't play nice multi-threads workflows.
28+
Note that handling logs with Python sometimes doesn't play nicely with multi-threaded workflows.
2929
An alternative is :func:`restore_default_callback`.
3030
31-
This will restores FFmpeg's logging default system, which prints to the terminal.
31+
This restores FFmpeg's default logging system, which prints to the terminal.
3232
Like with setting the log level to ``None``, this may also result in raised errors
3333
having less detailed messages.
3434

0 commit comments

Comments
 (0)