diff options
author | elijah <elijah@riseup.net> | 2014-10-30 14:03:28 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-10-30 14:03:28 -0700 |
commit | 49fa70f2503fa3112e9f5dcfa791f4ae49519deb (patch) | |
tree | 249d813523c7e143295943ab89753d7e145dbf44 | |
parent | dba2fe55527fee88c12e7a7fcda709d00576a9da (diff) | |
download | leap_cli-49fa70f2503fa3112e9f5dcfa791f4ae49519deb.tar.gz leap_cli-49fa70f2503fa3112e9f5dcfa791f4ae49519deb.tar.bz2 |
less verbose net-ssh logging
-rw-r--r-- | lib/leap_cli/util/remote_command.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/leap_cli/util/remote_command.rb b/lib/leap_cli/util/remote_command.rb index f4725de..6353e36 100644 --- a/lib/leap_cli/util/remote_command.rb +++ b/lib/leap_cli/util/remote_command.rb @@ -85,9 +85,9 @@ module LeapCli; module Util; module RemoteCommand def net_ssh_log_level case LeapCli.log_level - when 0 then 3 - when 1 then 2 - when 2 then 1 + when 1 then 3 + when 2 then 2 + when 3 then 1 else 0 end end |