| 8 | ) |
| 9 | |
| 10 | type Logger interface { |
| 11 | Info(output string) |
| 12 | Infof(format string, a ...any) |
| 13 | Error(output string) |
| 14 | Errorf(format string, a ...any) |
| 15 | Close() error |
| 16 | io.Writer |
| 17 | } |
| 18 | |
| 19 | func MultiLogger(loggers ...Logger) Logger { |
| 20 | return multiLogger{loggers} |
no outgoing calls
no test coverage detected