We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0af3d23 commit 8dfbb4eCopy full SHA for 8dfbb4e
pssh/clients/base/single.py
@@ -300,10 +300,11 @@ def _identity_auth(self):
300
identity_file)
301
try:
302
self._pkey_auth(identity_file, password=self.password)
303
- except Exception:
304
- logger.debug("Authentication with identity file %s failed, "
305
- "continuing with other identities",
306
- identity_file)
+ except Exception as ex:
+ logger.debug(
+ "Authentication with identity file %s failed with %s, "
+ "continuing with other identities",
307
+ ex, identity_file)
308
continue
309
else:
310
logger.debug("Authentication succeeded with identity file %s",
0 commit comments