1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/docker/client.go
Vincent Batts 92df943fbf 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>
2014-09-26 14:44:46 -04:00

13 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.")
}