From be7cdf97d150c7a3abc6845cbc78f7b571699b3e Mon Sep 17 00:00:00 2001 From: Sean Chittenden Date: Sun, 8 May 2016 23:34:32 -0700 Subject: [PATCH] Decrease the log-level from WARN to DEBUG when fingerprinting GCE This brings the logging here inline with the remaining fingerprinting code --- client/fingerprint/env_gce.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/fingerprint/env_gce.go b/client/fingerprint/env_gce.go index 68f74d035..fa74d6a96 100644 --- a/client/fingerprint/env_gce.go +++ b/client/fingerprint/env_gce.go @@ -96,7 +96,7 @@ func (f *EnvGCEFingerprint) Get(attribute string, recursive bool) (string, error res, err := f.client.Do(req) if err != nil || res.StatusCode != http.StatusOK { - f.logger.Printf("[WARN] fingerprint.env_gce: Could not read value for attribute %q", attribute) + f.logger.Printf("[DEBUG] fingerprint.env_gce: Could not read value for attribute %q", attribute) return "", err }