gitee.com/quant1x/gox@v1.21.2/runtime/compile.go (about) 1 package runtime 2 3 // Debug go编译tag debug状态 4 // 5 // 运行和编译增加 -tags="dev" 6 func Debug() bool { 7 return tagDebug 8 } 9 10 // SetDebug 重置debug状态 11 func SetDebug(enable bool) { 12 tagDebug = enable 13 }