Log which SSH key is used in e2e SSH test to help debug #7714

This commit is contained in:
Max Forbes 2015-05-04 13:55:05 -07:00
parent c07896ee35
commit f2173627ff

View File

@ -695,6 +695,7 @@ func getSigner(provider string) (ssh.Signer, error) {
return nil, fmt.Errorf("getSigner(...) not implemented for %s", provider)
}
key := filepath.Join(keydir, keyfile)
Logf("Using SSH key: %s", key)
// Create an actual signer.
file, err := os.Open(key)