in appinsights/contracts/severitylevel.go [16:31]
func (value SeverityLevel) String() string {
switch int(value) {
case 0:
return "Verbose"
case 1:
return "Information"
case 2:
return "Warning"
case 3:
return "Error"
case 4:
return "Critical"
default:
return "<unknown SeverityLevel>"
}
}