mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6f4d847046
Signed-off-by: Antonio Murdaca <me@runcom.ninja>
14 lines
189 B
Go
14 lines
189 B
Go
package main
|
|
|
|
import (
|
|
"github.com/Sirupsen/logrus"
|
|
"io"
|
|
)
|
|
|
|
func setLogLevel(lvl logrus.Level) {
|
|
logrus.SetLevel(lvl)
|
|
}
|
|
|
|
func initLogging(stderr io.Writer) {
|
|
logrus.SetOutput(stderr)
|
|
}
|