2015-04-09 04:23:30 +00:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
2015-07-30 21:01:53 +00:00
|
|
|
// Importing packages here only to make sure their init gets called and
|
|
|
|
// therefore they register themselves to the logdriver factory.
|
2015-06-20 04:07:50 +00:00
|
|
|
_ "github.com/docker/docker/daemon/logger/fluentd"
|
2015-05-29 21:00:46 +00:00
|
|
|
_ "github.com/docker/docker/daemon/logger/gelf"
|
2015-04-09 04:23:30 +00:00
|
|
|
_ "github.com/docker/docker/daemon/logger/journald"
|
|
|
|
_ "github.com/docker/docker/daemon/logger/jsonfilelog"
|
|
|
|
_ "github.com/docker/docker/daemon/logger/syslog"
|
|
|
|
)
|