From 573ce1982da2e754947453fdaf0d50204873acb4 Mon Sep 17 00:00:00 2001 From: René 'Necoro' Neumann Date: Sat, 25 Apr 2020 17:00:57 +0200 Subject: Larger restructuring --- pkg/log/log.go | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 pkg/log/log.go (limited to 'pkg/log') diff --git a/pkg/log/log.go b/pkg/log/log.go new file mode 100644 index 0000000..0238c7e --- /dev/null +++ b/pkg/log/log.go @@ -0,0 +1,47 @@ +package log + +import ( + "fmt" + "log" + "os" +) + +var debugLogger = log.New(os.Stdout, "", log.LstdFlags) +var errorLogger = log.New(os.Stderr, "ERROR ", log.LstdFlags|log.Lmsgprefix) +var warnLogger = log.New(os.Stdout, "WARN ", log.LstdFlags|log.Lmsgprefix) +var enableDebug = false + +func SetDebug(state bool) { + enableDebug = state +} + +func Print(v ...interface{}) { + if enableDebug { + _ = debugLogger.Output(2, fmt.Sprint(v...)) + } +} + +func Printf(format string, v ...interface{}) { + if enableDebug { + _ = debugLogger.Output(2, fmt.Sprintf(format, v...)) + } +} + +func Error(v ...interface{}) { + _ = errorLogger.Output(2, fmt.Sprint(v...)) +} + +//noinspection GoUnusedExportedFunction +func Errorf(format string, a ...interface{}) { + _ = errorLogger.Output(2, fmt.Sprintf(format, a...)) +} + +//noinspection GoUnusedExportedFunction +func Warn(v ...interface{}) { + _ = warnLogger.Output(2, fmt.Sprint(v...)) +} + +//noinspection GoUnusedExportedFunction +func Warnf(format string, a ...interface{}) { + _ = warnLogger.Output(2, fmt.Sprintf(format, a...)) +} -- cgit v1.2.3-54-g00ecf