我的意思是gin的不同模式,这是Golang的http框架,而不是VS IDE。
答案 0 :(得分:2)
在发布模式下,调试打印不会是done。
func debugPrint(format string, values ...interface{}) {
if IsDebugging() {
if !strings.HasSuffix(format, "\n") {
format += "\n"
}
fmt.Fprintf(os.Stderr, "[GIN-debug] "+format, values...)
}
}