improve gerror for stack information; fix issue in gconv.String for nil *time.Time type

This commit is contained in:
John
2019-11-21 21:49:00 +08:00
parent 1deb3510f0
commit 382356bc8d
5 changed files with 59 additions and 1 deletions

View File

@ -31,6 +31,11 @@ func init() {
}
}
// IsInGFDevelop checks and returns whether current process is in GF development.
func IsInGFDevelop() bool {
return isInGFDevelop
}
// Print prints <v> with newline using fmt.Println.
// The parameter <v> can be multiple variables.
func Print(v ...interface{}) {