fileLogger writes log output to a file, one per scenario
| 58 | |
| 59 | // fileLogger writes log output to a file, one per scenario |
| 60 | type fileLogger struct { |
| 61 | mu sync.Mutex |
| 62 | file *os.File |
| 63 | } |
| 64 | |
| 65 | func (f *fileLogger) Log(args ...any) { |
| 66 | f.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected