summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobey Pointer <robey@twitter.com>2009-07-19 18:49:04 -0700
committerRobey Pointer <robey@twitter.com>2009-07-19 18:49:04 -0700
commit0e2e882d0dd9e237019b74fb0cbe73d3000675d7 (patch)
tree45e2ddb192ce0c53bc32850b641976ee0ac8f28f
parente06dbde805df433e4c2c36d72276e45aba147b0b (diff)
make the "auth type not permitted" message debug level, for bazaar.
-rw-r--r--paramiko/auth_handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/auth_handler.py b/paramiko/auth_handler.py
index 39a0194a..a542f767 100644
--- a/paramiko/auth_handler.py
+++ b/paramiko/auth_handler.py
@@ -363,7 +363,7 @@ class AuthHandler (object):
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: