| 6 | ) |
| 7 | |
| 8 | type stdLogWriter struct { |
| 9 | l *Logger |
| 10 | opt *StandardLogOptions |
| 11 | } |
| 12 | |
| 13 | func (l *stdLogWriter) Write(p []byte) (n int, err error) { |
| 14 | str := strings.TrimSuffix(string(p), "\n") |
nothing calls this directly
no outgoing calls
no test coverage detected