log.Logger.Output (method)
21 uses
log (current package)
log.go#L161: func (l *Logger) Output(calldepth int, s string) error {
log.go#L191: l.Output(2, fmt.Sprintf(format, v...))
log.go#L196: func (l *Logger) Print(v ...interface{}) { l.Output(2, fmt.Sprint(v...)) }
log.go#L200: func (l *Logger) Println(v ...interface{}) { l.Output(2, fmt.Sprintln(v...)) }
log.go#L204: l.Output(2, fmt.Sprint(v...))
log.go#L210: l.Output(2, fmt.Sprintf(format, v...))
log.go#L216: l.Output(2, fmt.Sprintln(v...))
log.go#L223: l.Output(2, s)
log.go#L230: l.Output(2, s)
log.go#L237: l.Output(2, s)
log.go#L317: std.Output(2, fmt.Sprint(v...))
log.go#L323: std.Output(2, fmt.Sprintf(format, v...))
log.go#L329: std.Output(2, fmt.Sprintln(v...))
log.go#L334: std.Output(2, fmt.Sprint(v...))
log.go#L340: std.Output(2, fmt.Sprintf(format, v...))
log.go#L346: std.Output(2, fmt.Sprintln(v...))
log.go#L353: std.Output(2, s)
log.go#L360: std.Output(2, s)
log.go#L367: std.Output(2, s)
log.go#L379: return std.Output(calldepth+1, s) // +1 for this frame.
github.com/go-redis/redis/v8/internal
log.go#L19: _ = l.log.Output(2, fmt.Sprintf(format, v...))
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |