I looked at various official sources on how to do this, but I cannot find it. Imagine you have the following enumeration (I know that golang has no enumerations in the classical sense):
package main import "fmt" type LogLevel int const ( Off LogLevel = iota Debug ) var level LogLevel = Debug func main() { fmt.Printf("Log Level: %s", level) }
The closest I can get with the above %s , which gives me:
Log Level: %!s(main.LogLevel=1)
I would like to:
Log Level: Debug
Can anybody help me?
user11937
source share