Skip to content

Commit

Permalink
Don't show the date stamps in the logging
Browse files Browse the repository at this point in the history
This formatting matches roughly what we had before

Signed-off-by: Tim Smith <[email protected]>
  • Loading branch information
tas50 committed Oct 18, 2019
1 parent a89b337 commit 9d3cdcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions lib/stove.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

#
Expand Down
1 change: 1 addition & 0 deletions lib/stove/log.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
module Stove
class Log
extend Mixlib::Log
Mixlib::Log::Formatter.show_time = false
end
end

0 comments on commit 9d3cdcf

Please sign in to comment.