Merge pull request #25736 from mwieczorek/25689-enable-syslog-driver-on-windows
Enable syslog driver for windows Upstream-commit: 2c91c5fdad49ff2103ae377b5b4e1a97ebe3f402 Component: engine
This commit is contained in:
@ -7,4 +7,5 @@ import (
|
||||
_ "github.com/docker/docker/daemon/logger/etwlogs"
|
||||
_ "github.com/docker/docker/daemon/logger/jsonfilelog"
|
||||
_ "github.com/docker/docker/daemon/logger/splunk"
|
||||
_ "github.com/docker/docker/daemon/logger/syslog"
|
||||
)
|
||||
|
||||
@ -1,5 +1,3 @@
|
||||
// +build linux
|
||||
|
||||
// Package syslog provides the logdriver for forwarding server logs to syslog endpoints.
|
||||
package syslog
|
||||
|
||||
|
||||
@ -1,11 +1,10 @@
|
||||
// +build linux
|
||||
|
||||
package syslog
|
||||
|
||||
import (
|
||||
syslog "github.com/RackSec/srslog"
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
syslog "github.com/RackSec/srslog"
|
||||
)
|
||||
|
||||
func functionMatches(expectedFun interface{}, actualFun interface{}) bool {
|
||||
|
||||
@ -1,3 +0,0 @@
|
||||
// +build !linux
|
||||
|
||||
package syslog
|
||||
Reference in New Issue
Block a user