Signed-off-by: Yong Tang <yong.tang.github@outlook.com> Upstream-commit: 4785f1a7ab7ec857dc3ca849ee6ecadf519ef30e Component: engine
13 lines
191 B
Go
13 lines
191 B
Go
// +build !linux,!freebsd
|
|
|
|
package logger
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
)
|
|
|
|
func openPluginStream(a *pluginAdapter) (io.WriteCloser, error) {
|
|
return nil, errors.New("log plugin not supported")
|
|
}
|