1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

add gf.debug options and GF_DEBUG env control params for internal logging feature

This commit is contained in:
John 2020-02-22 14:51:44 +08:00
parent 745a913cfb
commit d8ef8a1f5d
4 changed files with 15 additions and 13 deletions

View File

@ -132,7 +132,7 @@ func formatSubStack(st stack, buffer *bytes.Buffer) {
continue
}
// Avoid GF stacks if not in GF development.
if !intlog.IsInGFDevelop() {
if !intlog.IsGFDebug() {
if strings.Contains(file, "github.com/gogf/gf/") {
continue
}

View File

@ -20,26 +20,26 @@ const (
)
var (
// isInGFDevelop marks whether current environment is in GF development.
isInGFDevelop = false
// isGFDebug marks whether printing GoFrame debug information.
isGFDebug = false
)
func init() {
if !cmdenv.Get("GF_DEV").IsEmpty() {
isInGFDevelop = true
if !cmdenv.Get("GF_DEBUG").IsEmpty() {
isGFDebug = true
return
}
}
// IsInGFDevelop checks and returns whether current process is in GF development.
func IsInGFDevelop() bool {
return isInGFDevelop
// IsGFDebug checks and returns whether current process is in GF development.
func IsGFDebug() bool {
return isGFDebug
}
// Print prints <v> with newline using fmt.Println.
// The parameter <v> can be multiple variables.
func Print(v ...interface{}) {
if !isInGFDevelop {
if !isGFDebug {
return
}
fmt.Println(append([]interface{}{now(), "[INTE]", file()}, v...)...)
@ -48,7 +48,7 @@ func Print(v ...interface{}) {
// Printf prints <v> with format <format> using fmt.Printf.
// The parameter <v> can be multiple variables.
func Printf(format string, v ...interface{}) {
if !isInGFDevelop {
if !isGFDebug {
return
}
fmt.Printf(now()+" [INTE] "+file()+" "+format+"\n", v...)
@ -57,7 +57,7 @@ func Printf(format string, v ...interface{}) {
// Error prints <v> with newline using fmt.Println.
// The parameter <v> can be multiple variables.
func Error(v ...interface{}) {
if !isInGFDevelop {
if !isGFDebug {
return
}
array := append([]interface{}{now(), "[INTE]", file()}, v...)
@ -67,7 +67,7 @@ func Error(v ...interface{}) {
// Errorf prints <v> with format <format> using fmt.Printf.
func Errorf(format string, v ...interface{}) {
if !isInGFDevelop {
if !isGFDebug {
return
}
fmt.Printf(

View File

@ -340,7 +340,7 @@ func (s *Server) Start() error {
}
})
}
if intlog.IsInGFDevelop() {
if intlog.IsGFDebug() {
intlog.Print("server configuration:")
gutil.Dump(s.config)
}

View File

@ -10,6 +10,7 @@ import (
"errors"
"fmt"
"github.com/gogf/gf/i18n/gi18n"
"github.com/gogf/gf/internal/intlog"
"github.com/gogf/gf/os/gfile"
"github.com/gogf/gf/os/glog"
"github.com/gogf/gf/os/gres"
@ -29,6 +30,7 @@ type Config struct {
// SetConfig sets the configuration for view.
func (view *View) SetConfig(config Config) error {
intlog.Printf("%+v", config)
var err error
if len(config.Paths) > 0 {
for _, v := range config.Paths {