logdrivers_windows.go 534 B

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