Skip to content

Commit

Permalink
make the "auth type not permitted" message debug level, for bazaar.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robey Pointer committed Jul 20, 2009
1 parent e06dbde commit 0e2e882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paramiko/auth_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def _parse_userauth_failure(self, m):
self.transport._log(DEBUG, 'Methods: ' + str(authlist))
self.transport.saved_exception = PartialAuthentication(authlist)
elif self.auth_method not in authlist:
self.transport._log(INFO, 'Authentication type (%s) not permitted.' % self.auth_method)
self.transport._log(DEBUG, 'Authentication type (%s) not permitted.' % self.auth_method)
self.transport._log(DEBUG, 'Allowed methods: ' + str(authlist))
self.transport.saved_exception = BadAuthenticationType('Bad authentication type', authlist)
else:
Expand Down

0 comments on commit 0e2e882

Please sign in to comment.