Merge branch 'master' into alerting

This commit is contained in:
bergquist
2016-06-16 16:29:41 +02:00
87 changed files with 2220 additions and 781 deletions

20
pkg/log/syslog_windows.go Normal file
View File

@@ -0,0 +1,20 @@
//+build windows
package log
import "github.com/inconshreveable/log15"
type SysLogHandler struct {
}
func NewSyslog() *SysLogHandler {
return &SysLogHandler{}
}
func (sw *SysLogHandler) Init() error {
return nil
}
func (sw *SysLogHandler) Log(r *log15.Record) error {
return nil
}