feat(build): fixing windows build issue, #5370

This commit is contained in:
Torkel Ödegaard
2016-06-16 14:36:19 +02:00
parent 46fe9a167e
commit b039a81375
2 changed files with 21 additions and 1 deletions
+20
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
}