mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07: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)
|
|
}
|