From a42c1a066a41847f3c5f01a565a654a024bae3fc Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Fri, 11 Oct 2019 13:21:22 -0700 Subject: [PATCH] Don't show the date stamps in the logging This formatting matches roughly what we had before Signed-off-by: Tim Smith --- lib/stove.rb | 4 +--- lib/stove/log.rb | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/stove.rb b/lib/stove.rb index 58a11ed..ebf9ed5 100644 --- a/lib/stove.rb +++ b/lib/stove.rb @@ -72,9 +72,7 @@ def root # the log level to set # def log_level=(lev) - puts lev.to_sym.class - puts lev.to_sym - Stove::Log.level = (lev.to_sym) + Stove::Log.level = lev.to_sym end # diff --git a/lib/stove/log.rb b/lib/stove/log.rb index 50d769d..9910954 100644 --- a/lib/stove/log.rb +++ b/lib/stove/log.rb @@ -20,5 +20,6 @@ module Stove class Log extend Mixlib::Log + Mixlib::Log::Formatter.show_time = false end end