(self, data)
| 72 | self.file_obj = file_obj |
| 73 | |
| 74 | def write(self, data): |
| 75 | if data: |
| 76 | data = sanitize_log_message(data) |
| 77 | self.file_obj.write(data) |
| 78 | self.file_obj.flush() |
| 79 | |
| 80 | def flush(self): |
| 81 | self.file_obj.flush() |
nothing calls this directly
no test coverage detected