Browse Source

Missing word in logging setup page

Running the log in debug mode should be not recommended, I think the word "not" is missing, its understandable when you think about it but probably can confuse someone who is new to programming.
pull/10140/head
Oytun Deniz Donmez 3 weeks ago
committed by GitHub
parent
commit
d5925d0ac6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/logging.rst

2
docs/logging.rst

@ -41,7 +41,7 @@ Likewise, configuring the log level to ``logging.DEBUG`` is also possible:
# Assume client refers to a discord.Client subclass...
client.run(token, log_handler=handler, log_level=logging.DEBUG)
This is recommended, especially at verbose levels such as ``DEBUG``, as there are a lot of events logged and it would clog the stderr of your program.
This is not recommended, especially at verbose levels such as ``DEBUG``, as there are a lot of events logged and it would clog the stderr of your program.
If you want the logging configuration the library provides to affect all loggers rather than just the ``discord`` logger, you can pass ``root_logger=True`` inside :meth:`Client.run`:

Loading…
Cancel
Save