999 chops of suffix zero, 000 allows for the milliseconds to be always printed with 3 chars. This makes the log the printed with the same columns. (partial logs below) 2018-11-13T21:13:28.249Z [INFO] [::1] 2018-11-13T21:13:48.414Z [INFO] [::1] 2018-11-13T21:13:49.1Z [INFO] [::1] vs: 2018-11-13T21:20:22.262Z [INFO] [::1] 2018-11-13T21:20:22.436Z [INFO] [::1] 2018-11-13T21:20:22.608Z [INFO] [::1] Signed-off-by: Miek Gieben <miek@miek.nl>
88 lines
2.7 KiB
Go
88 lines
2.7 KiB
Go
// Package log implements a small wrapper around the std lib log package.
|
|
// It implements log levels by prefixing the logs with the current time
|
|
// with in RFC3339Milli and [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, etc.
|
|
package log
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
golog "log"
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
// D controls whether we should output debug logs. If true, we do.
|
|
var D bool
|
|
|
|
// RFC3339Milli doesn't exist, invent it here.
|
|
func clock() string { return time.Now().Format("2006-01-02T15:04:05.000Z07:00") }
|
|
|
|
// logf calls log.Printf prefixed with level.
|
|
func logf(level, format string, v ...interface{}) {
|
|
golog.Print(clock(), level, fmt.Sprintf(format, v...))
|
|
}
|
|
|
|
// log calls log.Print prefixed with level.
|
|
func log(level string, v ...interface{}) {
|
|
golog.Print(clock(), level, fmt.Sprint(v...))
|
|
}
|
|
|
|
// Debug is equivalent to log.Print(), but prefixed with "[DEBUG] ". It only outputs something
|
|
// if D is true.
|
|
func Debug(v ...interface{}) {
|
|
if !D {
|
|
return
|
|
}
|
|
log(debug, v...)
|
|
}
|
|
|
|
// Debugf is equivalent to log.Printf(), but prefixed with "[DEBUG] ". It only outputs something
|
|
// if D is true.
|
|
func Debugf(format string, v ...interface{}) {
|
|
if !D {
|
|
return
|
|
}
|
|
logf(debug, format, v...)
|
|
}
|
|
|
|
// Info is equivalent to log.Print, but prefixed with "[INFO] ".
|
|
func Info(v ...interface{}) { log(info, v...) }
|
|
|
|
// Infof is equivalent to log.Printf, but prefixed with "[INFO] ".
|
|
func Infof(format string, v ...interface{}) { logf(info, format, v...) }
|
|
|
|
// Warning is equivalent to log.Print, but prefixed with "[WARNING] ".
|
|
func Warning(v ...interface{}) { log(warning, v...) }
|
|
|
|
// Warningf is equivalent to log.Printf, but prefixed with "[WARNING] ".
|
|
func Warningf(format string, v ...interface{}) { logf(warning, format, v...) }
|
|
|
|
// Error is equivalent to log.Print, but prefixed with "[ERROR] ".
|
|
func Error(v ...interface{}) { log(err, v...) }
|
|
|
|
// Errorf is equivalent to log.Printf, but prefixed with "[ERROR] ".
|
|
func Errorf(format string, v ...interface{}) { logf(err, format, v...) }
|
|
|
|
// Fatal is equivalent to log.Print, but prefixed with "[FATAL] ", and calling
|
|
// os.Exit(1).
|
|
func Fatal(v ...interface{}) { log(fatal, v...); os.Exit(1) }
|
|
|
|
// Fatalf is equivalent to log.Printf, but prefixed with "[FATAL] ", and calling
|
|
// os.Exit(1)
|
|
func Fatalf(format string, v ...interface{}) { logf(fatal, format, v...); os.Exit(1) }
|
|
|
|
// Discard sets the log output to /dev/null.
|
|
func Discard() { golog.SetOutput(ioutil.Discard) }
|
|
|
|
const (
|
|
debug = " [DEBUG] "
|
|
err = " [ERROR] "
|
|
fatal = " [FATAL] "
|
|
info = " [INFO] "
|
|
warning = " [WARNING] "
|
|
)
|