We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32fdbc8 commit 7f85b13Copy full SHA for 7f85b13
mamonsu/plugins/pgsql/driver/connection.py
@@ -74,7 +74,7 @@ def _close(self):
74
self.log.error('close error: {0}'.format(e))
75
76
def _connect(self):
77
- self.log.debug('connecting')
+ self.log.info('connecting')
78
host, unix_sock = self.host, None
79
if host.startswith('/'):
80
unix_sock, host = host, None
@@ -87,7 +87,7 @@ def _connect(self):
87
database=self.db,
88
application_name=self.appname
89
)
90
- self.log.debug('connected')
+ self.log.info('connected')
91
self.conn.autocommit = True
92
cur = self.conn.cursor()
93
cur.execute('set statement_timeout to {0}'.format(self.timeout * 1000))
0 commit comments