You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]>
0 commit comments