diff options
Diffstat (limited to 'lib/leap_cli/util')
-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 |