// Package consts ... // // Description : consts ... // // Author : go_developer@163.com<白茶清欢> // // Date : 2025-01-22 15:36 package consts import ( "encoding/json" "fmt" "testing" ) func TestLogLevel_String(t *testing.T) { byteData, err := json.Marshal(LogLevelDebug) fmt.Println(string(byteData), err) }