diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-19 01:12:25 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-19 01:12:25 +0200 |
commit | 8984dc3ca7dc72a1cf563ccc6fc85fbeb231117e (patch) | |
tree | e5322144c7aa324a01440f38f38a3d0d8ed8315a /internal/util/util.go | |
parent | 02c4c6e73cc97c7aefd70ebf7be9e7e6479b2f01 (diff) | |
download | feed2imap-go-8984dc3ca7dc72a1cf563ccc6fc85fbeb231117e.tar.gz feed2imap-go-8984dc3ca7dc72a1cf563ccc6fc85fbeb231117e.tar.bz2 feed2imap-go-8984dc3ca7dc72a1cf563ccc6fc85fbeb231117e.zip |
Fetching and parsing the feeds
Diffstat (limited to '')
-rw-r--r-- | internal/util/util.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/internal/util/util.go b/internal/util/util.go new file mode 100644 index 0000000..54a0805 --- /dev/null +++ b/internal/util/util.go @@ -0,0 +1,17 @@ +package util + +import ( + "log" + "os" +) + +var errorLogger = log.New(os.Stderr, "ERROR ", log.LstdFlags|log.Lmsgprefix) + +func Error(v ...interface{}) { + errorLogger.Print(v...) +} + +//noinspection GoUnusedExportedFunction +func Errorf(format string, a ...interface{}) { + errorLogger.Printf(format, a...) +} |