appidea-restapi/modules/debug/debug.go

15 lines
208 B
Go

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