Files
docker/daemon/logdrivers_linux.go
T
2015-05-14 10:34:09 -07:00

10 lines
323 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/journald"
_ "github.com/docker/docker/daemon/logger/jsonfilelog"
_ "github.com/docker/docker/daemon/logger/syslog"
)