Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: 655a58e27bfcfd2494bb5d46f95cb49d655ad17a Component: engine
10 lines
323 B
Go
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"
|
|
)
|