I mean the different modes of gin, which is the http framework of Golang, not of the VS IDE.
In release mode debug printing will not be done.
func debugPrint(format string, values ...interface{}) {
if IsDebugging() {
if !strings.HasSuffix(format, "
") {
format += "
"
}
fmt.Fprintf(os.Stderr, "[GIN-debug] "+format, values...)
}
}