log_at(level)
public
Change the thread-local level for the
duration of the given block.
# File activesupport/lib/active_support/logger_thread_safe_level.rb, line 43
def log_at(level)
old_local_level, self.local_level = local_level, level
yield
ensure
self.local_level = old_local_level
end