mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
898d2763c5
Signed-off-by: Sachin Joshi <sachin_jayant_joshi@hotmail.com>
14 lines
184 B
Go
14 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)
|
|
}
|