mirror of https://github.com/containers/podman.git
22 lines
529 B
Go
22 lines
529 B
Go
package events
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// NewEventer creates an eventer based on the eventer type
|
|
func NewEventer(options EventerOptions) (Eventer, error) {
|
|
logrus.Debugf("Initializing event backend %s", options.EventerType)
|
|
switch EventerType(strings.ToLower(options.EventerType)) {
|
|
case LogFile:
|
|
return EventLogFile{options}, nil
|
|
case Null:
|
|
return newNullEventer(), nil
|
|
default:
|
|
return nil, fmt.Errorf("unknown event logger type: %s", strings.ToLower(options.EventerType))
|
|
}
|
|
}
|