github.com/torfuzx/docker@v1.8.1/daemon/logdrivers_linux.go (about)

     1  package daemon
     2  
     3  // Importing packages here only to make sure their init gets called and
     4  // therefore they register themselves to the logdriver factory.
     5  import (
     6  	_ "github.com/docker/docker/daemon/logger/fluentd"
     7  	_ "github.com/docker/docker/daemon/logger/gelf"
     8  	_ "github.com/docker/docker/daemon/logger/journald"
     9  	_ "github.com/docker/docker/daemon/logger/jsonfilelog"
    10  	_ "github.com/docker/docker/daemon/logger/syslog"
    11  )