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:
Brian Goff
2016-08-29 17:46:12 -04:00
committed by GitHub
4 changed files with 3 additions and 8 deletions

View File

@ -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"
)

View File

@ -1,5 +1,3 @@
// +build linux
// Package syslog provides the logdriver for forwarding server logs to syslog endpoints.
package syslog

View File

@ -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 {

View File

@ -1,3 +0,0 @@
// +build !linux
package syslog