调试和发布两种杜松子酒模式有什么区别?

时间:2019-01-11 06:47:33

标签: go

我的意思是gin的不同模式,这是Golang的http框架,而不是VS IDE。

1 个答案:

答案 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...)
        }
    }