mirror of
https://github.com/docker/docs.git
synced 2026-03-27 06:18:55 +07:00
13 lines
148 B
Go
13 lines
148 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
log "github.com/Sirupsen/logrus"
|
|
)
|
|
|
|
func initLogging(lvl log.Level) {
|
|
log.SetOutput(os.Stderr)
|
|
log.SetLevel(lvl)
|
|
}
|