File tree 2 files changed +40
-0
lines changed
2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,23 @@ func NewAtomicLevelAt(l zapcore.Level) AtomicLevel {
86
86
return a
87
87
}
88
88
89
+ // ParseAtomicLevel parses an AtomicLevel based on a lowercase or all-caps ASCII
90
+ // representation of the log level. If the provided ASCII representation is
91
+ // invalid an error is returned.
92
+ //
93
+ // This is particularly useful when dealing with text input to configure log
94
+ // levels.
95
+ func ParseAtomicLevel (text string ) (AtomicLevel , error ) {
96
+ a := NewAtomicLevel ()
97
+ l , err := zapcore .ParseLevel (text )
98
+ if err != nil {
99
+ return a , err
100
+ }
101
+
102
+ a .SetLevel (l )
103
+ return a , nil
104
+ }
105
+
89
106
// Enabled implements the zapcore.LevelEnabler interface, which allows the
90
107
// AtomicLevel to be used in place of traditional static levels.
91
108
func (lvl AtomicLevel ) Enabled (l zapcore.Level ) bool {
Original file line number Diff line number Diff line change @@ -57,6 +57,29 @@ func TestNewAtomicLevel(t *testing.T) {
57
57
assert .Equal (t , WarnLevel , lvl .Level (), "Unexpected level after SetLevel." )
58
58
}
59
59
60
+ func TestParseAtomicLevel (t * testing.T ) {
61
+ tests := []struct {
62
+ text string
63
+ level AtomicLevel
64
+ err string
65
+ }{
66
+ {"info" , NewAtomicLevel (), "" },
67
+ {"DEBUG" , NewAtomicLevelAt (DebugLevel ), "" },
68
+ {"FOO" , NewAtomicLevel (), `unrecognized level: "FOO"` },
69
+ }
70
+
71
+ for _ , tt := range tests {
72
+ parsedAtomicLevel , err := ParseAtomicLevel (tt .text )
73
+ if len (tt .err ) == 0 {
74
+ assert .NoError (t , err )
75
+ assert .Equal (t , tt .level , parsedAtomicLevel )
76
+ } else {
77
+ assert .Error (t , err )
78
+ assert .Contains (t , err .Error (), tt .err )
79
+ }
80
+ }
81
+ }
82
+
60
83
func TestAtomicLevelMutation (t * testing.T ) {
61
84
lvl := NewAtomicLevel ()
62
85
lvl .SetLevel (WarnLevel )
You can’t perform that action at this time.
0 commit comments