aboutsummaryrefslogtreecommitdiff
path: root/internal/log/log.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-19 15:05:08 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-19 15:05:08 +0200
commit0b09b3a77b4784e63419114e4c43baf1f3ae2562 (patch)
treec9c0e12b33cc51833b65bd39566223394d29dc90 /internal/log/log.go
parente8c715f6b267d65cb0694704b395bcc236f74195 (diff)
downloadfeed2imap-go-0b09b3a77b4784e63419114e4c43baf1f3ae2562.tar.gz
feed2imap-go-0b09b3a77b4784e63419114e4c43baf1f3ae2562.tar.bz2
feed2imap-go-0b09b3a77b4784e63419114e4c43baf1f3ae2562.zip
Rename util.go to log.go. Add verbose mode
Diffstat (limited to 'internal/log/log.go')
-rw-r--r--internal/log/log.go46
1 files changed, 46 insertions, 0 deletions
diff --git a/internal/log/log.go b/internal/log/log.go
new file mode 100644
index 0000000..d2c09d0
--- /dev/null
+++ b/internal/log/log.go
@@ -0,0 +1,46 @@
+package log
+
+import (
+ "fmt"
+ "log"
+ "os"
+)
+
+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 {
+ _ = log.Output(2, fmt.Sprint(v...))
+ }
+}
+
+func Printf(format string, v ...interface{}) {
+ if !enableDebug {
+ _ = log.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...))
+}