github.com/simpleiot/simpleiot@v0.18.3/system/syslog_windows.go (about) 1 // +build windows 2 3 package system 4 5 import "errors" 6 7 // EnableSyslog is not supported on windows 8 func EnableSyslog() error { 9 return errors.New("Syslog not supported on windows") 10 }