mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 21:38:07 +01:00
Use Rails.logger.warn instead of puts
This commit is contained in:
parent
2d076504d9
commit
d092a01cea
1 changed files with 2 additions and 2 deletions
|
@ -41,12 +41,12 @@ module CacheConcern
|
|||
true
|
||||
end
|
||||
|
||||
$stderr.puts "fetch_value issue culprit: #{culprit.inspect}\n"
|
||||
Rails.logger.warn "fetch_value issue culprit: #{culprit.inspect}"
|
||||
|
||||
cache_key = Rails.cache.send(:normalize_key, culprit, {})
|
||||
entry = Rails.cache.send(:read_entry, cache_key)
|
||||
raw_marshal = Zlib::Inflate.inflate(entry.instance_variable_get(:@value))
|
||||
$stderr.puts "base64 marshal of culprit: #{Base64.encode64(raw_marshal)}"
|
||||
Rails.logger.warn "base64 marshal of culprit: #{Base64.encode64(raw_marshal)}"
|
||||
end
|
||||
|
||||
return [] if raw.empty?
|
||||
|
|
Loading…
Reference in a new issue