diff --git a/contributors/devel/README.md b/contributors/devel/README.md index e49af6276..bec20d846 100644 --- a/contributors/devel/README.md +++ b/contributors/devel/README.md @@ -32,7 +32,7 @@ Guide](http://kubernetes.io/docs/admin/). * **Hunting flaky tests** ([flaky-tests.md](sig-testing/flaky-tests.md)): We have a goal of 99.9% flake free tests. Here's how to run your tests many times. -* **Logging Conventions** ([logging.md](sig-instrumentation/logging.md)): Glog levels. +* **Logging Conventions** ([logging.md](sig-instrumentation/logging.md)): klog levels. * **Profiling Kubernetes** ([profiling.md](sig-scalability/profiling.md)): How to plug in go pprof profiler to Kubernetes. diff --git a/contributors/devel/sig-api-machinery/controllers.md b/contributors/devel/sig-api-machinery/controllers.md index 268e0d103..505769f24 100644 --- a/contributors/devel/sig-api-machinery/controllers.md +++ b/contributors/devel/sig-api-machinery/controllers.md @@ -123,7 +123,7 @@ func (c *Controller) Run(threadiness int, stopCh chan struct{}) { // make sure the work queue is shutdown which will trigger workers to end defer c.queue.ShutDown() - glog.Infof("Starting controller") + klog.Infof("Starting controller") // wait for your secondary caches to fill before starting your work if !cache.WaitForCacheSync(stopCh, c.podsSynced) { @@ -140,7 +140,7 @@ func (c *Controller) Run(threadiness int, stopCh chan struct{}) { // wait until we're told to stop <-stopCh - glog.Infof("Shutting down controller") + klog.Infof("Shutting down controller") } func (c *Controller) runWorker() {