mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
92bf0a5046
Signed-off-by: John Howard <jhoward@microsoft.com>
18 lines
257 B
Go
18 lines
257 B
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func runDaemon(opts *daemonOptions) error {
|
|
daemonCli := NewDaemonCli()
|
|
return daemonCli.start(opts)
|
|
}
|
|
|
|
func initLogging(_, stderr io.Writer) {
|
|
logrus.SetOutput(stderr)
|
|
}
|