package log import "time" func Print() { Infof(time.Now().UTC().Format(time.RFC3339)) } func PrintV2() { Infof("=====> %s", time.Now().UTC().Format(time.RFC3339)) }