diff options
author | Robin Jarry <robin@jarry.cc> | 2022-07-19 22:31:25 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-07-23 22:52:10 +0200 |
commit | a1f779ccc9b16b22ad6cb2e0bf73c290fd0cc756 (patch) | |
tree | 30c2e1ce5d3f375e6734b6e1d60777f02e3c0b2b /logging/logger.go | |
parent | b188f191313b838f74a1c4b09b58b0ccd1076287 (diff) | |
download | aerc-a1f779ccc9b16b22ad6cb2e0bf73c290fd0cc756.tar.gz |
logging: add logger system with levels
The built-in logging system is rather basic. Implement a multi-level
logger to ease interpreting the logs. Configure the loggers with
prefixes and microsecond precision for timestamps.
Also, prefix the messages with the source file name and line number.
Because of this, enabling the logs has a performance cost. They will
only be enabled when redirecting aerc stdout to a file.
Here is an example output:
DEBUG 2022/07/20 12:52:34.536190 worker.go:45: PostAction *types.FetchDirectoryContents
DEBUG 2022/07/20 12:52:34.536329 worker.go:92: ProcessAction *types.FetchDirectoryContents(2417)
DEBUG 2022/07/20 12:52:34.536407 idler.go:159: idler (0xc00017c000) [idle:false,wait:false] =>(idle) [debounce]
INFO 2022/07/20 12:52:34.536432 threadbuilder.go:59: 130 threads created in 220.796µs
DEBUG 2022/07/20 12:52:34.536449 worker.go:75: ProcessMessage *types.DirectoryInfo(2416)
DEBUG 2022/07/20 12:52:34.536453 idler.go:159: idler (0xc00017c000) [idle:false,wait:false] <=(idle)
DEBUG 2022/07/20 12:52:34.536459 worker.go:45: PostAction *types.FetchDirectoryContents
INFO 2022/07/20 12:52:34.536470 open.go:30: Fetching UID list
INFO 2022/07/20 12:52:34.536689 threadbuilder.go:59: 130 threads created in 201.635µs
Signed-off-by: Robin Jarry <robin@jarry.cc>
Acked-by: Moritz Poldrack <moritz@poldrack.dev>
Diffstat (limited to 'logging/logger.go')
-rw-r--r-- | logging/logger.go | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/logging/logger.go b/logging/logger.go new file mode 100644 index 00000000..0ecc35c3 --- /dev/null +++ b/logging/logger.go @@ -0,0 +1,70 @@ +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) +} + +func Infof(message string, args ...interface{}) { + if info == nil { + return + } + if len(args) > 0 { + message = fmt.Sprintf(message, args...) + } + info.Output(2, message) +} + +func Warnf(message string, args ...interface{}) { + if warn == nil { + return + } + if len(args) > 0 { + message = fmt.Sprintf(message, args...) + } + warn.Output(2, message) +} + +func Errorf(message string, args ...interface{}) { + if err == nil { + return + } + if len(args) > 0 { + message = fmt.Sprintf(message, args...) + } + err.Output(2, message) +} |