Merge branch 'logging-adapter'

This commit is contained in:
Daniele Varrazzo 2020-03-08 11:23:32 +00:00
commit 34c54f3fc3
2 changed files with 4 additions and 2 deletions

2
NEWS
View File

@ -6,6 +6,8 @@ What's new in psycopg 2.8.5
- Fixed use of `!connection_factory` and `!cursor_factory` together
(:ticket:`#1019`).
- Added support for `~logging.LoggerAdapter` in
`~psycopg2.extras.LoggingConnection` (:ticket:`#1026`).
What's new in psycopg 2.8.4

View File

@ -406,11 +406,11 @@ class LoggingConnection(_connection):
def initialize(self, logobj):
"""Initialize the connection to log to `!logobj`.
The `!logobj` parameter can be an open file object or a Logger
The `!logobj` parameter can be an open file object or a Logger/LoggerAdapter
instance from the standard logging module.
"""
self._logobj = logobj
if _logging and isinstance(logobj, _logging.Logger):
if _logging and isinstance(logobj, (_logging.Logger, _logging.LoggerAdapter)):
self.log = self._logtologger
else:
self.log = self._logtofile