mirror of
https://github.com/kubernetes/sample-controller.git
synced 2026-07-15 00:00:09 +08:00
The new releases of klog (via klogr) and logr expose support for call traces via a new WithCallDepth API in logr. The new klogr can be configured to pass structured log entries into klog instead of turning them into a single text message. Kubernetes-commit: 562a39a2e1e26854c06ac2b317f6f8a4ebb23ac1
22 lines
434 B
AMPL
22 lines
434 B
AMPL
// This is a generated file. Do not edit directly.
|
|
|
|
module k8s.io/sample-controller
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
k8s.io/api v0.0.0
|
|
k8s.io/apimachinery v0.0.0
|
|
k8s.io/client-go v0.0.0
|
|
k8s.io/code-generator v0.0.0
|
|
k8s.io/klog/v2 v2.5.0
|
|
)
|
|
|
|
replace (
|
|
k8s.io/api => ../api
|
|
k8s.io/apimachinery => ../apimachinery
|
|
k8s.io/client-go => ../client-go
|
|
k8s.io/code-generator => ../code-generator
|
|
k8s.io/sample-controller => ../sample-controller
|
|
)
|