Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type NullLogger ¶
type NullLogger struct{}
func (*NullLogger) Print ¶
func (l *NullLogger) Print(v ...interface{})
func (*NullLogger) Printf ¶
func (l *NullLogger) Printf(format string, v ...interface{})
func (*NullLogger) Println ¶
func (l *NullLogger) Println(v ...interface{})
type Printer ¶
type Printer interface { Print(v ...interface{}) Printf(format string, v ...interface{}) Println(v ...interface{}) }
type PrinterCloser ¶
func NewFileLogger ¶
func NewFileLogger(path string) PrinterCloser
NewFileLogger creates a printer that writes to the given file path.
func NewStdLogger ¶
func NewStdLogger() PrinterCloser
NewStdLogger creates a a printer that writes to StdOut.
Click to show internal directories.
Click to hide internal directories.