Documentation
¶
Overview ¶
Package log defines the logger interface used in rsync library.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Logger ¶
type Logger interface { // Printf logs message to the underlying log output. Arguments are handled in the manner of fmt.Printf. Printf(msg string, a ...any) Output(calldepth int, s string) error }
Logger is an interface that allows specifying your own logger. By default, the Go log package is used, which prints to stderr.
Click to show internal directories.
Click to hide internal directories.