diff options
| author | Tobotimus <[email protected]> | 2018-01-06 17:21:56 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-01-06 17:23:59 -0500 |
| commit | 3112e1c17e7859adf6d13ed844f4c636b4bc30d8 (patch) | |
| tree | 70d7aafca549a8c245ee4fdab774e1ab5302d531 /docs/logging.rst | |
| parent | [commands] Fix MissingRequiredArgument param handling (diff) | |
| download | discord.py-3112e1c17e7859adf6d13ed844f4c636b4bc30d8.tar.xz discord.py-3112e1c17e7859adf6d13ed844f4c636b4bc30d8.zip | |
Add intersphinx
Diffstat (limited to 'docs/logging.rst')
| -rw-r--r-- | docs/logging.rst | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/logging.rst b/docs/logging.rst index 03955752..4724d02e 100644 --- a/docs/logging.rst +++ b/docs/logging.rst @@ -4,7 +4,7 @@ Setting Up Logging =================== -*discord.py* logs errors and debug information via the `logging`_ python +*discord.py* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as:: @@ -21,7 +21,7 @@ The optional ``level`` argument specifies what level of events to log out and can any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``. -More advance setups are possible with the ``logging`` module. To for +More advance setups are possible with the :mod:`logging` module. To for example write the logs to a file called ``discord.log`` instead of outputting them to to the console the following snippet can be used:: @@ -41,6 +41,4 @@ stdout of your program. For more information, check the documentation and tutorial of the -`logging`_ module. - -.. _logging: https://docs.python.org/2/library/logging.html +:mod:`logging` module. |