eab5c2b86b
Signed-off-by: Andrew Keesler <akeesler@vmware.com>
28 lines
646 B
Go
28 lines
646 B
Go
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package controllerlib
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/client-go/tools/events"
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
var _ events.EventRecorder = klogRecorder{}
|
|
|
|
type klogRecorder struct{}
|
|
|
|
func (n klogRecorder) Eventf(regarding runtime.Object, related runtime.Object, eventtype, reason, action, note string, args ...interface{}) {
|
|
klog.V(4).InfoS("recording event",
|
|
"regarding", regarding,
|
|
"related", related,
|
|
"eventtype", eventtype,
|
|
"reason", reason,
|
|
"action", action,
|
|
"message", fmt.Sprintf(note, args...),
|
|
)
|
|
}
|