Get captured stderr output
(self)
| 122 | logger.debug("Error reading Copilot CLI stderr", exc_info=True) |
| 123 | |
| 124 | def get_stderr_output(self) -> str: |
| 125 | """Get captured stderr output""" |
| 126 | with self._stderr_lock: |
| 127 | return "".join(self._stderr_output).strip() |
| 128 | |
| 129 | async def stop(self): |
| 130 | """Stop listening and clean up""" |
no test coverage detected