Documentation ¶
Overview ¶
Package logger defines a type for writing to logs. It's just a convenience type so that we don't have to pass verbose func(...) types around.
Index ¶
- func Discard(string, ...interface{})
- func FuncWriter(f Logf) io.Writer
- func StdLogger(f Logf) *log.Logger
- type ArgWriter
- type Logf
- func Filtered(logf Logf, allow func(s string) bool) Logf
- func LogOnChange(logf Logf, maxInterval time.Duration, timeNow func() time.Time) Logf
- func LogfCloser(logf Logf) (newLogf Logf, close func())
- func RateLimitedFn(logf Logf, f time.Duration, burst int, maxCache int) Logf
- func RusagePrefixLog(logf Logf) Logf
- func WithPrefix(f Logf, prefix string) Logf
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Discard ¶ added in v0.98.0
func Discard(string, ...interface{})
Discard is a Logf that throws away the logs given to it.
func FuncWriter ¶
FuncWriter returns an io.Writer that writes to f.
Types ¶
type ArgWriter ¶ added in v0.98.1
ArgWriter is a fmt.Formatter that can be passed to any Logf func to efficiently write to a %v argument without allocations.
type Logf ¶
type Logf func(format string, args ...interface{})
Logf is the basic Tailscale logger type: a printf-like func. Like log.Printf, the format need not end in a newline. Logf functions must be safe for concurrent use.
func Filtered ¶ added in v1.4.0
Filtered returns a Logf that silently swallows some log lines. Each inbound format and args is evaluated and printed to a string s. The original format and args are passed to logf if and only if allow(s) returns true.
func LogOnChange ¶ added in v0.98.1
LogOnChange logs a given line only if line != lastLine, or if maxInterval has passed since the last time this identical line was logged.
func LogfCloser ¶ added in v1.4.0
LogfCloser wraps logf to create a logger that can be closed. Calling close makes all future calls to newLogf into no-ops.
func RateLimitedFn ¶ added in v0.98.1
RateLimitedFn returns a rate-limiting Logf wrapping the given logf. Messages are allowed through at a maximum of one message every f (where f is a time.Duration), in bursts of up to burst messages at a time. Up to maxCache strings will be held at a time.
func RusagePrefixLog ¶ added in v1.2.0
RusagePrefixLog returns a Logf func wrapping the provided logf func that adds a prefixed log message to each line with the current binary memory usage and max RSS.
func WithPrefix ¶
WithPrefix wraps f, prefixing each format with the provided prefix.