| 23 | error) |
| 24 | |
| 25 | type logStreamV4EventReader struct { |
| 26 | isClosed bool |
| 27 | |
| 28 | logDirectory string |
| 29 | logPrefix string |
| 30 | nextLogFileNum uint |
| 31 | |
| 32 | isRelayLog bool |
| 33 | |
| 34 | isNewLogFile bool |
| 35 | |
| 36 | reader EventReader |
| 37 | parsers V4EventParserMap |
| 38 | |
| 39 | newLogFileReader LogFileReaderCreator |
| 40 | |
| 41 | logger Logger |
| 42 | } |
| 43 | |
| 44 | // This returns an EventReader which read and parses events from a (bin /relay) |
| 45 | // log stream composed of multiple log files. If no parser is available for |
nothing calls this directly
no outgoing calls
no test coverage detected