mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
750f0d1648
Configuration over the API per container is intentionally left out for the time being, but is supported to configure the default from the daemon config. Signed-off-by: Brian Goff <cpuguy83@gmail.com> (cherry picked from commit cbecf48bc352e680a5390a7ca9cff53098cd16d7) Signed-off-by: Madhu Venugopal <madhu@docker.com>
16 lines
741 B
Go
16 lines
741 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/gcplogs"
|
|
_ "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/loggerutils/cache"
|
|
_ "github.com/docker/docker/daemon/logger/splunk"
|
|
_ "github.com/docker/docker/daemon/logger/syslog"
|
|
)
|