package debug import ( "fmt" "os" "git.umbach.dev/app-idea/rest-api/modules/config" ) func Msg(msg ...interface{}) { if config.GetConfig().Server.Debug == true { fmt.Fprintln(os.Stdout, msg...) } }