Files
docker-cli/components/engine/docker/client.go
Vincent Batts 50457aefd5 daemon logging: unifying output and timestamps
A little refactor of the ./pkg/log so engine can have a logger instance

Signed-off-by: Vincent Batts <vbatts@redhat.com>
Upstream-commit: 92df943fbf225d78b160babb36e9c6fd38cdc0d0
Component: engine
2014-09-26 14:44:46 -04:00

14 lines
217 B
Go

// +build !daemon
package main
import (
"github.com/docker/docker/pkg/log"
)
const CanDaemon = false
func mainDaemon() {
log.Fatal("This is a client-only binary - running the Docker daemon is not supported.")
}