diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-25 17:00:57 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-25 17:00:57 +0200 |
commit | 573ce1982da2e754947453fdaf0d50204873acb4 (patch) | |
tree | f6528235dce77db514ce4442ee8817e993fdcc86 /internal/log/log.go | |
parent | d21881150c09986571a563eaf30bc1687787e63f (diff) | |
download | feed2imap-go-573ce1982da2e754947453fdaf0d50204873acb4.tar.gz feed2imap-go-573ce1982da2e754947453fdaf0d50204873acb4.tar.bz2 feed2imap-go-573ce1982da2e754947453fdaf0d50204873acb4.zip |
Larger restructuring
Diffstat (limited to 'internal/log/log.go')
-rw-r--r-- | internal/log/log.go | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/internal/log/log.go b/internal/log/log.go deleted file mode 100644 index 0238c7e..0000000 --- a/internal/log/log.go +++ /dev/null @@ -1,47 +0,0 @@ -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...)) -} |