tt/utils/level_string.go

28 lines
662 B
Go

// Code generated by "stringer -type=Level -linecomment"; DO NOT EDIT.
package utils
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[Debug-0]
_ = x[Info-1]
_ = x[Warn-2]
_ = x[Error-3]
_ = x[Fatal-4]
}
const _Level_name = "DEBUGINFOWARNERRORFATAL"
var _Level_index = [...]uint8{0, 5, 9, 13, 18, 23}
func (i Level) String() string {
if i < 0 || i >= Level(len(_Level_index)-1) {
return "Level(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _Level_name[_Level_index[i]:_Level_index[i+1]]
}