blob: 0a2036c83898169eac070e0aa997f753da58f20b [file] [log] [blame]
// +build !linux,!solaris,!freebsd
package logger
import (
"errors"
"io"
)
func openPluginStream(a *pluginAdapter) (io.WriteCloser, error) {
return nil, errors.New("log plugin not supported")
}