| 51 | } |
| 52 | |
| 53 | type funcOut struct { |
| 54 | out func(time.Time, bool, string) |
| 55 | close func() error |
| 56 | } |
| 57 | |
| 58 | func (f funcOut) Write(stamp time.Time, debug bool, msg string) { |
| 59 | f.out(stamp, debug, msg) |
nothing calls this directly
no outgoing calls
no test coverage detected