-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.go
80 lines (68 loc) · 2.35 KB
/
configuration.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package golog
// Configuration is a struct that holds
// global src configurations
type Configuration struct {
// AsyncScheduler will be used to distinguish
// between a sync (if nil) or async (if not nil)
// approach
AsyncScheduler AsyncScheduler
// LvlFieldName is used to customize the name of
// the key that represents the level of the Log
//
// Note that it cannot be equal to the MsgFieldName
LvlFieldName string
// MsgFieldName is used to customize the name of
// the key that represents the message of the Log
//
// Note that it cannot be equal to the LvlFieldName
MsgFieldName string
// LvlsEnabled is an integer that represents which
// Log levels are enabled.
//
// Note that it is intended to be used as a combination
// ("or" bitwise operation) of log levels
LvlsEnabled uint64
// ErrorParser is a function that takes an error and
// return a msg string and an optional collection of fields
// (used by ErrorFrom and FatalFrom methods)
ErrorParser func(error) (string, LogFields)
}
func (l *logger) Configuration(c Configuration) { l.configuration = &c }
// DefaultConfig creates a default Logger configuration,
// with a synchronous approach (nil AsyncScheduler),
// omitting only Trace logs, using "lvl" and "msg"
// as LvlFieldName and MsgFieldName, respectively, and
// extracting only the error message via 'ErrorParser'
func DefaultConfig() Configuration {
return Configuration{
nil,
DefaultLvlKey,
DefaultMsgKey,
LvlDefaults,
DefaultErrorParser}
}
// DefaultLvlKey is the key used to store the level of
// the log, inside the fields maps
const DefaultLvlKey = "lvl"
// DefaultMsgKey is the key used to store the message of
// the log, inside the fields maps
const DefaultMsgKey = "msg"
// DefaultErrorParser will return a tuple containing the error string
// and the following map: { "error": err }
func DefaultErrorParser(err error) (string, LogFields) {
return err.Error(), LogFields{DefaultErrorKey: err}
}
// DefaultErrorKey is the key used to store the errors returned
// by the DefaultErrorParser, inside the fields map
const DefaultErrorKey = "error"
// validateConfig will return a non-nil error
// if the given Configuration contains errors
func validateConfig(c Configuration) error {
if c.LvlFieldName == c.MsgFieldName {
return ErrLvlMsgSameKey
}
if c.ErrorParser == nil {
return ErrNilErrorParser
}
return nil
}