cff4f20c44
The github.com/containerd/containerd/log package was moved to a separate module, which will also be used by upcoming (patch) releases of containerd. This patch moves our own uses of the package to use the new module. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
18 lines
263 B
Go
18 lines
263 B
Go
//go:build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/containerd/log"
|
|
)
|
|
|
|
func runDaemon(opts *daemonOptions) error {
|
|
daemonCli := NewDaemonCli()
|
|
return daemonCli.start(opts)
|
|
}
|
|
|
|
func initLogging(_, stderr io.Writer) {
|
|
log.L.Logger.SetOutput(stderr)
|
|
}
|