mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
14 lines
627 B
Go
14 lines
627 B
Go
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
// Importing packages here only to make sure their init gets called and
|
|
// therefore they register themselves to the logdriver factory.
|
|
_ "github.com/docker/docker/daemon/logger/awslogs"
|
|
_ "github.com/docker/docker/daemon/logger/etwlogs"
|
|
_ "github.com/docker/docker/daemon/logger/fluentd"
|
|
_ "github.com/docker/docker/daemon/logger/gelf"
|
|
_ "github.com/docker/docker/daemon/logger/jsonfilelog"
|
|
_ "github.com/docker/docker/daemon/logger/logentries"
|
|
_ "github.com/docker/docker/daemon/logger/splunk"
|
|
_ "github.com/docker/docker/daemon/logger/syslog"
|
|
)
|