Documentation ¶
Overview ¶
Package intlog provides internal logging for GoFrame development usage only.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Error ¶
func Error(v ...interface{})
Error prints `v` with newline using fmt.Println. The parameter `v` can be multiple variables.
func Errorf ¶
func Errorf(format string, v ...interface{})
Errorf prints `v` with format `format` using fmt.Printf.
func Print ¶
func Print(v ...interface{})
Print prints `v` with newline using fmt.Println. The parameter `v` can be multiple variables.
func Printf ¶
func Printf(format string, v ...interface{})
Printf prints `v` with format `format` using fmt.Printf. The parameter `v` can be multiple variables.
func SetEnabled ¶ added in v1.12.0
func SetEnabled(enabled bool)
SetEnabled enables/disables the internal logging manually. Note that this function is not concurrent safe, be aware of the DATA RACE.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.