Fix redirected and broken links

This commit is contained in:
Andrew Janke
2018-12-18 02:05:53 -05:00
parent 5187d5801d
commit 808eb3a286
26 changed files with 98 additions and 98 deletions
+7 -7
View File
@@ -70,9 +70,9 @@ this in your ``__init__.py``:
Logging in an Application
*************************
The `twelve factor app <http://12factor.net>`_, an authoritative reference
The `twelve factor app <https://12factor.net>`_, an authoritative reference
for good practice in application development, contains a section on
`logging best practice <http://12factor.net/logs>`_. It emphatically
`logging best practice <https://12factor.net/logs>`_. It emphatically
advocates for treating log events as an event stream, and for
sending that event stream to standard output to be handled by the
application environment.
@@ -192,9 +192,9 @@ Example Configuration Directly in Code
logger.debug('often makes a very good meal of %s', 'visiting tourists')
.. _basic logging tutorial: http://docs.python.org/howto/logging.html#logging-basic-tutorial
.. _logging configuration: https://docs.python.org/howto/logging.html#configuring-logging
.. _logging tutorial: http://docs.python.org/howto/logging.html
.. _configuring logging for a library: https://docs.python.org/howto/logging.html#configuring-logging-for-a-library
.. _log record: https://docs.python.org/library/logging.html#logrecord-attributes
.. _basic logging tutorial: http://docs.python.org/3/howto/logging.html#logging-basic-tutorial
.. _logging configuration: https://docs.python.org/3/howto/logging.html#configuring-logging
.. _logging tutorial: http://docs.python.org/3/howto/logging.html
.. _configuring logging for a library: https://docs.python.org/3/howto/logging.html#configuring-logging-for-a-library
.. _log record: https://docs.python.org/3/library/logging.html#logrecord-attributes
.. _requests source: https://github.com/kennethreitz/requests