serviceman/vendor/github.com/labstack/gommon/log/color.go

14 lines
154 B
Go
Raw Normal View History

2019-07-01 08:44:54 +00:00
// +build !appengine
package log
import (
"io"
"github.com/mattn/go-colorable"
)
func output() io.Writer {
return colorable.NewColorableStdout()
}