log/info.go

11 lines
114 B
Go

package log
import (
golanglog "log"
)
func Info(a ...any) {
if ! INFO { return }
golanglog.Println(a...)
}