(self, fmtstr, *args)
| 19 | self.conn_type = conn_type |
| 20 | |
| 21 | def debug(self, fmtstr, *args): |
| 22 | logger.debug( |
| 23 | f"{self.conn_type} {fmtstr}", *args, extra={"client": self.peername} |
| 24 | ) |
| 25 | |
| 26 | def trace(self, fmtstr, *args): |
| 27 | logger.log( |
no outgoing calls
no test coverage detected