Documentation ¶
Overview ¶
Package log implements a small wrapper around the std lib log package. It implements log levels by prefixing the logs with [INFO], [DEBUG], [WARNING] or [ERROR]. Debug logging is available and enabled if the *debug* plugin is used.
log.Info("this is some logging"), will log on the Info level.
log.Debug("this is debug output"), will log in the Debug level.
Index ¶
- Variables
- func Debug(v ...interface{})
- func Debugf(format string, v ...interface{})
- func Discard()
- func Error(v ...interface{})
- func Errorf(format string, v ...interface{})
- func Fatal(v ...interface{})
- func Fatalf(format string, v ...interface{})
- func Info(v ...interface{})
- func Infof(format string, v ...interface{})
- func Warning(v ...interface{})
- func Warningf(format string, v ...interface{})
- type P
- func (p P) Debug(v ...interface{})
- func (p P) Debugf(format string, v ...interface{})
- func (p P) Error(v ...interface{})
- func (p P) Errorf(format string, v ...interface{})
- func (p P) Fatal(v ...interface{})
- func (p P) Fatalf(format string, v ...interface{})
- func (p P) Info(v ...interface{})
- func (p P) Infof(format string, v ...interface{})
- func (p P) Warning(v ...interface{})
- func (p P) Warningf(format string, v ...interface{})
Constants ¶
This section is empty.
Variables ¶
var D bool
D controls whether we should output debug logs. If true, we do.
Functions ¶
func Debug ¶
func Debug(v ...interface{})
Debug is equivalent to log.Print(), but prefixed with "[DEBUG] ". It only outputs something if D is true.
func Debugf ¶
func Debugf(format string, v ...interface{})
Debugf is equivalent to log.Printf(), but prefixed with "[DEBUG] ". It only outputs something if D is true.
func Error ¶
func Error(v ...interface{})
Error is equivalent to log.Print, but prefixed with "[ERROR] ".
func Errorf ¶
func Errorf(format string, v ...interface{})
Errorf is equivalent to log.Printf, but prefixed with "[ERROR] ".
func Fatal ¶ added in v1.2.1
func Fatal(v ...interface{})
Fatal is equivalent to log.Print, but prefixed with "[FATAL] ", and calling os.Exit(1).
func Fatalf ¶ added in v1.2.1
func Fatalf(format string, v ...interface{})
Fatalf is equivalent to log.Printf, but prefixed with "[FATAL] ", and calling os.Exit(1)
func Info ¶
func Info(v ...interface{})
Info is equivalent to log.Print, but prefixed with "[INFO] ".
func Infof ¶
func Infof(format string, v ...interface{})
Infof is equivalent to log.Printf, but prefixed with "[INFO] ".
Types ¶
type P ¶
type P struct {
// contains filtered or unexported fields
}
P is a logger that includes the plugin doing the logging.
func NewWithPlugin ¶
NewWithPlugin returns a logger that includes "plugin/name: " in the log message. I.e [INFO] plugin/<name>: message.
func (P) Fatal ¶ added in v1.2.1
func (p P) Fatal(v ...interface{})
Fatal logs as log.Fatal and calls os.Exit(1).