mirror of
https://github.com/moby/moby.git
synced 2026-07-12 10:35:14 +00:00
15 lines
189 B
Go
15 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)
|
|
}
|