-
Notifications
You must be signed in to change notification settings - Fork 124
/
logger.go
50 lines (39 loc) · 1.33 KB
/
logger.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright 2015 Nevio Vesic
// Please check out LICENSE file for more information about what you CAN and what you CANNOT do!
// Basically in short this is a free software for you to do whatever you want to do BUT copyright must be included!
// I didn't write all of this code so you could say it's yours.
// MIT License
package goesl
import (
"os"
"github.com/op/go-logging"
)
var (
log = logging.MustGetLogger("goesl")
// Example format string. Everything except the message has a custom color
// which is dependent on the log level. Many fields have a custom output
// formatting too, eg. the time returns the hour down to the milli second.
format = logging.MustStringFormatter(
"%{color}%{time:15:04:05.000} %{shortfunc} ▶ %{level:.8s}%{color:reset} %{message}",
)
)
func Debug(message string, args ...interface{}) {
log.Debugf(message, args...)
}
func Error(message string, args ...interface{}) {
log.Errorf(message, args...)
}
func Notice(message string, args ...interface{}) {
log.Noticef(message, args...)
}
func Info(message string, args ...interface{}) {
log.Infof(message, args...)
}
func Warning(message string, args ...interface{}) {
log.Warningf(message, args...)
}
func init() {
backend := logging.NewLogBackend(os.Stderr, "", 0)
formatter := logging.NewBackendFormatter(backend, format)
logging.SetBackend(formatter)
}