Decrease the log-level from WARN to DEBUG when fingerprinting GCE

This brings the logging here inline with the remaining fingerprinting code
This commit is contained in:
Sean Chittenden 2016-05-08 23:34:32 -07:00
parent 2ff8b10e05
commit 8e88b11596
No known key found for this signature in database
GPG Key ID: 4EBC9DC16C2E5E16
1 changed files with 1 additions and 1 deletions

View File

@ -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
}