Enable syslog driver for windows

Signed-off-by: Michal Wieczorek <wieczorek-michal@wp.pl>
Upstream-commit: eac70703e3f46f825354f03cac93206497143350
Component: engine
This commit is contained in:
Michal Wieczorek
2016-08-17 22:26:24 +02:00
parent fba4d062dd
commit da10d8cdee
4 changed files with 3 additions and 8 deletions
@@ -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