diff options
| author | mokha <mokha@cisco.com> | 2018-05-24 17:00:08 -0600 |
|---|---|---|
| committer | mokha <mokha@cisco.com> | 2018-05-24 17:00:08 -0600 |
| commit | 2b22902dd4810b5c05c7dda5fc248da27bd6e9a0 (patch) | |
| tree | a62cbe8500a4da28d6e5796136fdc43cdb8c5eb0 | |
| parent | a5eb3ff39f3803dafe50e371892a19325f7fb568 (diff) | |
disable logger unless debug enabled.
| -rw-r--r-- | lib/ats/cli/command.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ats/cli/command.rb b/lib/ats/cli/command.rb index 460d2bc..eeb58b3 100644 --- a/lib/ats/cli/command.rb +++ b/lib/ats/cli/command.rb @@ -26,6 +26,7 @@ module ATS def configuration ATS.configure do |x| + Net::Hippie.logger = Logger.new('/dev/null') unless options['debug'] x.debug = options['debug'] end end |
