Skip to content

Commit e751939

Browse files
Techassiabhinav
andauthored
zapcore: Add ParseLevel (#1047)
This adds the public ParseLevel function which enables the user to construct a log level based on ASCII text input. This re-uses the UnmarshalText method of Level for the heavy-lifting, but it avoids the user having to declare a local `Level` variable first. ```go var level zapcore.Level err := level.UnmarshalText([]byte("debug")) // versus level, err := zapcore.ParseLevel("debug") ``` #### Usage ```go level, err := zapcore.LevelFromString("info") // zapcore.InfoLevel, nil level, err := zapcore.LevelFromString("DEBUG") // zapcore.DebugLevel, nil level, err := zapcore.LevelFromString("FOO") // 0, "invalid level" ``` Co-authored-by: Abhinav Gupta <[email protected]>
1 parent ad0b02d commit e751939

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

zapcore/level.go

+12
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,18 @@ const (
5555
_maxLevel = FatalLevel
5656
)
5757

58+
// ParseLevel parses a level based on the lower-case or all-caps ASCII
59+
// representation of the log level. If the provided ASCII representation is
60+
// invalid an error is returned.
61+
//
62+
// This is particularly useful when dealing with text input to configure log
63+
// levels.
64+
func ParseLevel(text string) (Level, error) {
65+
var level Level
66+
err := level.UnmarshalText([]byte(text))
67+
return level, err
68+
}
69+
5870
// String returns a lower-case ASCII representation of the log level.
5971
func (l Level) String() string {
6072
switch l {

zapcore/level_test.go

+22
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,28 @@ func TestLevelText(t *testing.T) {
7676
}
7777
}
7878

79+
func TestParseLevel(t *testing.T) {
80+
tests := []struct {
81+
text string
82+
level Level
83+
err string
84+
}{
85+
{"info", InfoLevel, ""},
86+
{"DEBUG", DebugLevel, ""},
87+
{"FOO", 0, `unrecognized level: "FOO"`},
88+
}
89+
for _, tt := range tests {
90+
parsedLevel, err := ParseLevel(tt.text)
91+
if len(tt.err) == 0 {
92+
assert.NoError(t, err)
93+
assert.Equal(t, tt.level, parsedLevel)
94+
} else {
95+
assert.Error(t, err)
96+
assert.Contains(t, err.Error(), tt.err)
97+
}
98+
}
99+
}
100+
79101
func TestCapitalLevelsParse(t *testing.T) {
80102
tests := []struct {
81103
text string

0 commit comments

Comments
 (0)