Files
docker-cli/components/engine/docker/log.go
Sachin Joshi 0a4df30772 Move windows console specific implementation in sub package
Signed-off-by: Sachin Joshi <sachin_jayant_joshi@hotmail.com>
Upstream-commit: 898d2763c5430efaf808d7ca8c97b6d792c46c46
Component: engine
2015-03-16 14:04:53 -07:00

15 lines
184 B
Go

package main
import (
log "github.com/Sirupsen/logrus"
"io"
)
func setLogLevel(lvl log.Level) {
log.SetLevel(lvl)
}
func initLogging(stderr io.Writer) {
log.SetOutput(stderr)
}