summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEddie Zaneski <eddiezane@gmail.com>2019-10-09 17:03:36 -0600
committerEddie Zaneski <eddiezane@gmail.com>2019-10-09 17:03:36 -0600
commitf5a729b44381138a96e8f033ded5206507fa5cf0 (patch)
tree7b933f39eafb1938b9499c6198a88c4313e6f462
parentaf31c5f9751e49e313e9660b6fa37e9221ec07d5 (diff)
Update old glog references to klog
Signed-off-by: Eddie Zaneski <eddiezane@gmail.com>
-rw-r--r--contributors/devel/README.md2
-rw-r--r--contributors/devel/sig-api-machinery/controllers.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/contributors/devel/README.md b/contributors/devel/README.md
index e49af627..bec20d84 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 268e0d10..505769f2 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 <NAME> controller")
+ klog.Infof("Starting <NAME> 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 <NAME> controller")
+ klog.Infof("Shutting down <NAME> controller")
}
func (c *Controller) runWorker() {