aerc/logging/logger.go
Moritz Poldrack 5ca6022d00 lint: ensure errors are at least logged (errcheck)
Signed-off-by: Moritz Poldrack <moritz@poldrack.dev>
Acked-by: Robin Jarry <robin@jarry.cc>
2022-08-04 21:57:57 +02:00

71 lines
1.4 KiB
Go

package logging
import (
"fmt"
"io/ioutil"
"log"
"os"
)
var (
dbg *log.Logger
info *log.Logger
warn *log.Logger
err *log.Logger
)
func Init() {
flags := log.Ldate | log.Ltime | log.Lmicroseconds | log.Lshortfile | log.LUTC
dbg = log.New(os.Stdout, "DEBUG ", flags)
info = log.New(os.Stdout, "INFO ", flags)
warn = log.New(os.Stdout, "WARN ", flags)
err = log.New(os.Stdout, "ERROR ", flags)
}
func ErrorLogger() *log.Logger {
if err == nil {
return log.New(ioutil.Discard, "", log.LstdFlags)
}
return err
}
func Debugf(message string, args ...interface{}) {
if dbg == nil {
return
}
if len(args) > 0 {
message = fmt.Sprintf(message, args...)
}
dbg.Output(2, message) //nolint:errcheck // we can't do anything with what we log
}
func Infof(message string, args ...interface{}) {
if info == nil {
return
}
if len(args) > 0 {
message = fmt.Sprintf(message, args...)
}
info.Output(2, message) //nolint:errcheck // we can't do anything with what we log
}
func Warnf(message string, args ...interface{}) {
if warn == nil {
return
}
if len(args) > 0 {
message = fmt.Sprintf(message, args...)
}
warn.Output(2, message) //nolint:errcheck // we can't do anything with what we log
}
func Errorf(message string, args ...interface{}) {
if err == nil {
return
}
if len(args) > 0 {
message = fmt.Sprintf(message, args...)
}
err.Output(2, message) //nolint:errcheck // we can't do anything with what we log
}