mirror of https://github.com/markbates/pkger.git
10 lines
145 B
Go
10 lines
145 B
Go
|
// +build debug
|
||
|
|
||
|
package debug
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func Debug(format string, a ...interface{}) {
|
||
|
fmt.Println("[PKGER]", fmt.Sprintf(format, a...))
|
||
|
}
|