Methods

Instance Public methods

silence(severity = Logger::ERROR)

Silences the logger for the duration of the block.

📝 Source code
# File activesupport/lib/active_support/logger_silence.rb, line 17
def silence(severity = Logger::ERROR)
  silencer ? log_at(severity) { yield self } : yield(self)
end
🔎 See on GitHub

Definition files