Skip to content

Commit

Permalink
Merge pull request #16175 from skorks/log_digestor_as_debug
Browse files Browse the repository at this point in the history
Log digest as :debug instead of :info
  • Loading branch information
rafaelfranca committed Jul 15, 2014
2 parents c3f4d6c + d92ade3 commit 04e7ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actionview/lib/action_view/digestor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def initialize(options)

def digest
Digest::MD5.hexdigest("#{source}-#{dependency_digest}").tap do |digest|
logger.try :info, " Cache digest for #{template.inspect}: #{digest}"
logger.try :debug, " Cache digest for #{template.inspect}: #{digest}"
end
rescue ActionView::MissingTemplate
logger.try :error, " Couldn't find template for digesting: #{name}"
Expand Down

0 comments on commit 04e7ea3

Please sign in to comment.