restore v0.3.0
This commit is contained in:
30
level/level_string.go
Normal file
30
level/level_string.go
Normal file
@@ -0,0 +1,30 @@
|
||||
// Code generated by "stringer -type=Level -linecomment"; DO NOT EDIT.
|
||||
|
||||
package level
|
||||
|
||||
import "strconv"
|
||||
|
||||
func _() {
|
||||
// An "invalid array index" compiler error signifies that the constant values have changed.
|
||||
// Re-run the stringer command to generate them again.
|
||||
var x [1]struct{}
|
||||
_ = x[Emergency-0]
|
||||
_ = x[Alert-1]
|
||||
_ = x[Critical-2]
|
||||
_ = x[Error-3]
|
||||
_ = x[Warning-4]
|
||||
_ = x[Notice-5]
|
||||
_ = x[Info-6]
|
||||
_ = x[Debug-7]
|
||||
}
|
||||
|
||||
const _Level_name = "emergencyalertcriticalerrorwarningnoticeinfodebug"
|
||||
|
||||
var _Level_index = [...]uint8{0, 9, 14, 22, 27, 34, 40, 44, 49}
|
||||
|
||||
func (i Level) String() string {
|
||||
if i >= Level(len(_Level_index)-1) {
|
||||
return "Level(" + strconv.FormatInt(int64(i), 10) + ")"
|
||||
}
|
||||
return _Level_name[_Level_index[i]:_Level_index[i+1]]
|
||||
}
|
||||
Reference in New Issue
Block a user