(self, acc)
| 348 | return acc |
| 349 | |
| 350 | def _onconfigure_start_io(self, acc): |
| 351 | self.init_imap(acc) |
| 352 | self.init_logging(acc) |
| 353 | acc.start_io() |
| 354 | print(acc._logid, "waiting for inbox IDLE to become ready") |
| 355 | acc._evtracker.wait_idle_inbox_ready() |
| 356 | acc._evtracker.consume_events() |
| 357 | acc.log("inbox IDLE ready") |
| 358 | |
| 359 | def init_logging(self, acc): |
| 360 | """idempotent function for initializing logging (will replace existing logger).""" |
no test coverage detected