(self, log_file_path, output_stream)
| 24 | |
| 25 | class ScriptOutputLogger: |
| 26 | def __init__(self, log_file_path, output_stream): |
| 27 | self.opened = False |
| 28 | self.closed = False |
| 29 | self.output_stream = output_stream |
| 30 | |
| 31 | self.log_file_path = log_file_path |
| 32 | self.log_file = None |
| 33 | self.close_callback = None |
| 34 | |
| 35 | def start(self): |
| 36 | self._ensure_file_open() |
nothing calls this directly
no outgoing calls
no test coverage detected