예제 #1
0
파일: log.go 프로젝트: behance/go-logging
func AlwaysShowColors(tf bool) {
	log.SetFormatter(&log.TextFormatter{ForceColors: tf})
}
예제 #2
0
파일: log.go 프로젝트: behance/go-logging
func SetFormatter(formatter log.Formatter) {
	log.SetFormatter(formatter)
}