Log 'message' at INFO level, along with id of 'operation_handle'.
(self, operation_handle, message)
| 305 | pass |
| 306 | |
| 307 | def log_handle(self, operation_handle, message): |
| 308 | """Log 'message' at INFO level, along with id of 'operation_handle'.""" |
| 309 | handle_id = self.handle_id(operation_handle) |
| 310 | LOG.info(u"{0}: {1}".format(handle_id, message)) |
| 311 | |
| 312 | def log_client(self, message): |
| 313 | """Log 'message' at INFO level, prefixed wih the protocol name of this connection.""" |
no test coverage detected