(self)
| 103 | return self.logger |
| 104 | |
| 105 | def read_log(self): |
| 106 | if self.file_path and os.path.exists(self.file_path): |
| 107 | return file_utils.read_file(self.file_path, keep_newlines=True) |
| 108 | |
| 109 | return None |
| 110 | |
| 111 | def is_file_opened(self): |
| 112 | if self.output_logger.log_file: |
no outgoing calls
no test coverage detected