1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-01 13:04:27 +00:00
GoBlog/debug.go
2022-03-16 08:28:03 +01:00

10 lines
138 B
Go

package main
import "log"
func (a *goBlog) debug(msg ...any) {
if a.cfg.Debug {
log.Println(append([]any{"Debug:"}, msg...)...)
}
}