mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 19:48:04 +00:00
c1a8884d62
- add backend selection option - by default it will auto-detect a backend
20 lines
536 B
Go
20 lines
536 B
Go
package pipeline
|
|
|
|
import (
|
|
backend "github.com/woodpecker-ci/woodpecker/pipeline/backend/types"
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/multipart"
|
|
)
|
|
|
|
// Logger handles the process logging.
|
|
type Logger interface {
|
|
Log(*backend.Step, multipart.Reader) error
|
|
}
|
|
|
|
// LogFunc type is an adapter to allow the use of an ordinary
|
|
// function for process logging.
|
|
type LogFunc func(*backend.Step, multipart.Reader) error
|
|
|
|
// Log calls f(proc, r).
|
|
func (f LogFunc) Log(step *backend.Step, r multipart.Reader) error {
|
|
return f(step, r)
|
|
}
|