mirror of
https://github.com/clearlinux/docker.git
synced 2026-08-28 13:25:42 +00:00
361a582ba0
Signed-off-by: TAGOMORI Satoshi <tagomoris@gmail.com>
12 lines
424 B
Go
12 lines
424 B
Go
package daemon
|
|
|
|
// Importing packages here only to make sure their init gets called and
|
|
// therefore they register themselves to the logdriver factory.
|
|
import (
|
|
_ "github.com/docker/docker/daemon/logger/fluentd"
|
|
_ "github.com/docker/docker/daemon/logger/gelf"
|
|
_ "github.com/docker/docker/daemon/logger/journald"
|
|
_ "github.com/docker/docker/daemon/logger/jsonfilelog"
|
|
_ "github.com/docker/docker/daemon/logger/syslog"
|
|
)
|