Files
fn-serverless/api/runner/common/win_logging.go

13 lines
192 B
Go

// +build !linux,!darwin
package common
import (
"errors"
"net/url"
)
func NewSyslogHook(url *url.URL, prefix string) error {
return errors.New("Syslog not supported on this system.")
}