| 94 | } |
| 95 | |
| 96 | type StreamLogger struct { |
| 97 | m *sync.Mutex |
| 98 | level logrus.Level |
| 99 | |
| 100 | prefixes []Prefix |
| 101 | |
| 102 | format Format |
| 103 | isTerminal bool |
| 104 | stream io.Writer |
| 105 | errorStream io.Writer |
| 106 | |
| 107 | survey survey.Survey |
| 108 | |
| 109 | sinks []Logger |
| 110 | } |
| 111 | |
| 112 | type Prefix struct { |
| 113 | Prefix string |
nothing calls this directly
no outgoing calls
no test coverage detected