Explorar el Código

Merge pull request #35073 from mle-ii/master

Add gelf log driver plugin to Windows build
John Stephens hace 7 años
padre
commit
72e179aa04
Se han modificado 2 ficheros con 1 adiciones y 2 borrados
  1. 1 0
      daemon/logdrivers_windows.go
  2. 0 2
      daemon/logger/gelf/gelf.go

+ 1 - 0
daemon/logdrivers_windows.go

@@ -6,6 +6,7 @@ import (
 	_ "github.com/docker/docker/daemon/logger/awslogs"
 	_ "github.com/docker/docker/daemon/logger/etwlogs"
 	_ "github.com/docker/docker/daemon/logger/fluentd"
+	_ "github.com/docker/docker/daemon/logger/gelf"
 	_ "github.com/docker/docker/daemon/logger/jsonfilelog"
 	_ "github.com/docker/docker/daemon/logger/logentries"
 	_ "github.com/docker/docker/daemon/logger/splunk"

+ 0 - 2
daemon/logger/gelf/gelf.go

@@ -1,5 +1,3 @@
-// +build linux
-
 // Package gelf provides the log driver for forwarding server logs to
 // endpoints that support the Graylog Extended Log Format.
 package gelf