(self, sql_stmt)
| 1025 | self.__conn.close() |
| 1026 | |
| 1027 | def __log_execute(self, sql_stmt): |
| 1028 | session_id = session_handle_to_session_id(self.__session.handle) |
| 1029 | self.log_client( |
| 1030 | u"executing at {0}. session: {1} user: {2}\n{3}".format( |
| 1031 | self.__host_port, session_id, self.__user, format_sql_for_logging(sql_stmt)) |
| 1032 | ) |
| 1033 | |
| 1034 | def log_client(self, message): |
| 1035 | """Log 'message' at INFO level, prefixed wih the protocol name of this connection.""" |
no test coverage detected