diff options
author | Abraham Sangha <abraham.sangha@gmail.com> | 2020-06-08 10:17:09 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-08 10:17:09 -0600 |
commit | 6322cb20974b1d702b9fa0cfc07dbef2c549797c (patch) | |
tree | dfbe31173a77b5e50f0584ecebfaf0e36f431078 | |
parent | 3ab2364e78641c4f0e4b6456afc2cbed39b0d0e6 (diff) | |
download | sqlalchemy-6322cb20974b1d702b9fa0cfc07dbef2c549797c.tar.gz |
Fix capitalization typos in engines.rst
-rw-r--r-- | doc/build/core/engines.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/core/engines.rst b/doc/build/core/engines.rst index 1fd66ec8c..9a5e6eb1f 100644 --- a/doc/build/core/engines.rst +++ b/doc/build/core/engines.rst @@ -294,12 +294,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:`_sa.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"`` |