diff options
author | Jamis Buck <jamis@37signals.com> | 2008-03-17 21:48:31 -0600 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2008-03-17 21:48:31 -0600 |
commit | 278a80fa6ffa2704335ed18e35aec3bf838eb1da (patch) | |
tree | d623092eea0b5e4cebe5640893d89eab7e41d144 /lib/net/ssh/authentication/methods/password.rb | |
parent | 47b3715e58f5ed2b7de912fd8745696fff114305 (diff) | |
download | net-ssh-278a80fa6ffa2704335ed18e35aec3bf838eb1da.tar.gz |
refactor the log levels
Diffstat (limited to 'lib/net/ssh/authentication/methods/password.rb')
-rw-r--r-- | lib/net/ssh/authentication/methods/password.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/ssh/authentication/methods/password.rb b/lib/net/ssh/authentication/methods/password.rb index 03c1cae..9b1c095 100644 --- a/lib/net/ssh/authentication/methods/password.rb +++ b/lib/net/ssh/authentication/methods/password.rb @@ -22,7 +22,7 @@ module Net debug { "password succeeded" } return true when USERAUTH_FAILURE - trace { "password failed" } + debug { "password failed" } return false when USERAUTH_PASSWD_CHANGEREQ debug { "password change request received, failing" } |