Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Logger ¶
type Logger interface {
Trace(msg string, args ...interface{})
Debug(msg string, args ...interface{})
Info(msg string, args ...interface{})
Warn(msg string, args ...interface{})
Error(msg string, args ...interface{})
}
Logger is an interface that can be passed to BuilderOptions.Logger.
type NullLogger ¶
type NullLogger struct{}
func (NullLogger) Debug ¶
func (n NullLogger) Debug(msg string, args ...interface{})
func (NullLogger) Error ¶
func (n NullLogger) Error(msg string, args ...interface{})
func (NullLogger) Info ¶
func (n NullLogger) Info(msg string, args ...interface{})
func (NullLogger) Trace ¶
func (n NullLogger) Trace(msg string, args ...interface{})
func (NullLogger) Warn ¶
func (n NullLogger) Warn(msg string, args ...interface{})
Click to show internal directories.
Click to hide internal directories.