* Vendors packages * Adds a Makefile that uses docker to build a static binary against musl using alpine linux. Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
13 lines
224 B
Go
13 lines
224 B
Go
//go:build !linux
|
|
|
|
package logger
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func setupSyslog(logger *logrus.Logger, syslogName string) error {
|
|
return fmt.Errorf("Syslog logging isn't supported on this platform")
|
|
}
|