github.com/tsuna/docker@v1.7.0-rc3/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/journald"
     7  	_ "github.com/docker/docker/daemon/logger/jsonfilelog"
     8  	_ "github.com/docker/docker/daemon/logger/syslog"
     9  )