From: Abraham Sangha Date: Mon, 8 Jun 2020 16:17:09 +0000 (-0600) Subject: Fix capitalization typos in engines.rst X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8261aa20cc3a1556cc64ba0072f1d77683002bcf;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix capitalization typos in engines.rst (cherry picked from commit 6322cb20974b1d702b9fa0cfc07dbef2c549797c) --- diff --git a/doc/build/core/engines.rst b/doc/build/core/engines.rst index dda1dd1e3b..fcfd54a102 100644 --- a/doc/build/core/engines.rst +++ b/doc/build/core/engines.rst @@ -275,12 +275,12 @@ namespace, as used by ``logging.getLogger('sqlalchemy')``. When logging has been configured (i.e. such as via ``logging.basicConfig()``), the general namespace of SA loggers that can be turned on is as follows: -* ``sqlalchemy.engine`` - controls SQL echoing. set to ``logging.INFO`` for +* ``sqlalchemy.engine`` - controls SQL echoing. Set to ``logging.INFO`` for SQL query output, ``logging.DEBUG`` for query + result set output. These settings are equivalent to ``echo=True`` and ``echo="debug"`` on :paramref:`.create_engine.echo`, respectively. -* ``sqlalchemy.pool`` - controls connection pool logging. set to +* ``sqlalchemy.pool`` - controls connection pool logging. Set to ``logging.INFO`` to log connection invalidation and recycle events; set to ``logging.DEBUG`` to additionally log all pool checkins and checkouts. These settings are equivalent to ``pool_echo=True`` and ``pool_echo="debug"``