(self, options)
| 47 | |
| 48 | @contextmanager |
| 49 | def handle_context(self, options): |
| 50 | log_path = options.log_system_memory |
| 51 | logger = PROCESS_LOGGER if log_path else EMPTY_PROCESS_LOGGER |
| 52 | with logger.log_system_memory(log_path): |
| 53 | yield |
| 54 | |
| 55 | |
| 56 | class PosixContext(DesktopContext): |
no test coverage detected