From 37508a11c162cc40197ab3f138bc2279fb9a13f0 Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Wed, 4 Jan 2017 16:57:17 -0800 Subject: [PATCH] Log when a UID is created --- controllers/gce/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/controllers/gce/main.go b/controllers/gce/main.go index 2cc35751c..de1ebd57d 100644 --- a/controllers/gce/main.go +++ b/controllers/gce/main.go @@ -327,6 +327,7 @@ func getClusterUID(kubeClient client.Interface, name string) (string, error) { return "", err } uid := fmt.Sprintf("%x", b) + glog.Infof("Using new cluster uid %q", uid) return uid, cfgVault.Put(uid) }