summaryrefslogtreecommitdiff
path: root/test/engine/test_logging.py
Commit message (Collapse)AuthorAgeFilesLines
* - Exception messages have been spiffed up a bit. The SQL statementMike Bayer2014-10-171-3/+5
| | | | | | | | | | | and parameters are not displayed if None, reducing confusion for error messages that weren't related to a statement. The full module and classname for the DBAPI-level exception is displayed, making it clear that this is a wrapped DBAPI exception. The statement and parameters themselves are bounded within a bracketed sections to better isolate them from the error message and from each other. fixes #3172
* - Fixed bug in connection pool logging where the "connection checked out"Mike Bayer2014-08-201-2/+83
| | | | | | | | debug logging message would not emit if the logging were set up using ``logging.setLevel()``, rather than using the ``echo_pool`` flag. Tests to assert this logging have been added. This is a regression that was introduced in 0.9.0. fixes #3168
* - pep8 cleanupMike Bayer2014-08-201-24/+13
|
* - ensure all tests are named test_*Mike Bayer2014-07-301-3/+3
|
* - rename __multiple__ to __backend__, and apply __backend__ to a large ↵Mike Bayer2014-03-241-0/+255
number of tests. - move out logging tests from test_execute to test_logging