aboutsummaryrefslogtreecommitdiff
path: root/lib/leap_cli/config/object.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-10-31 16:56:46 -0700
committerelijah <elijah@riseup.net>2014-10-31 16:56:46 -0700
commitc05f0def1b5fe4863a80bdfbac3407b011053a89 (patch)
tree9f02b206df1b09f67ec231d9cbb3f1d001bf4f20 /lib/leap_cli/config/object.rb
parenta9c79dbb1f8cef409b52835a3d5ee21069434f4c (diff)
downloadleap_cli-c05f0def1b5fe4863a80bdfbac3407b011053a89.tar.gz
leap_cli-c05f0def1b5fe4863a80bdfbac3407b011053a89.tar.bz2
only spit out stack trace if --debug
Diffstat (limited to 'lib/leap_cli/config/object.rb')
-rw-r--r--lib/leap_cli/config/object.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/leap_cli/config/object.rb b/lib/leap_cli/config/object.rb
index 45144bc..a0d402b 100644
--- a/lib/leap_cli/config/object.rb
+++ b/lib/leap_cli/config/object.rb
@@ -293,14 +293,14 @@ module LeapCli
Util::log "offending string: #{value}", :indent => 1
Util::log "error message: no file '#{exc}'", :indent => 1
end
- raise exc if LeapCli.log_level >= 2
+ raise exc if DEBUG
end
rescue AssertionFailed => exc
Util.bail! do
Util::log :failed, "assertion while evaluating node '#{self.name}'"
Util::log 'assertion: %s' % exc.assertion, :indent => 1
Util::log "offending key: #{key}", :indent => 1
- raise exc if LeapCli.log_level >= 2
+ raise exc if DEBUG
end
rescue SyntaxError, StandardError => exc
Util::bail! do
@@ -308,7 +308,7 @@ module LeapCli
Util::log "offending key: #{key}", :indent => 1
Util::log "offending string: #{value}", :indent => 1
Util::log "error message: #{exc.inspect}", :indent => 1
- raise exc if LeapCli.log_level >= 2
+ raise exc if DEBUG
end
end