gpt4 book ai didi

ruby-on-rails - ActionView::Template::Error(未定义方法 `silence' 为)

转载 作者:数据小太阳 更新时间:2023-10-29 07:14:09 26 4
gpt4 key购买 nike

我在 heroku 上有一个非常奇怪的问题。我有这样的观点:

= content_for :header_title do
= t('.header_title')

- if @appointments.exists?
%table.table.table-striped.table-bordered.table-hover
%thead
%tr
%th= t('.id')
%th= t('.athena_health_id')
%th= t('.start_time')
%th= t('.duration')
%th= t('.provider')
%th= t('.created_at')
%th= t('.updated_at')
%tbody
= render @appointments

= paginate @appointments
- else
%h3.text-center= t('.appointments_not_found')
%hr/

没什么特别的。当我访问在 heroku 上使用此模板的页面时,我收到:

 ActionView::Template::Error (undefined method `silence' for #<Logger:0x007f7a86267a70>):

规范正在通过。在我的本地一切正常。我不知道发生了什么。 Stacktrace 显示问题出在以下行:

= paginate @appointments

我正在使用 Rails 5.0 和 kaminari (1.0.0.alpha)。有什么想法吗?

编辑:在我的 production.rb 中我有:

  if ENV['RAILS_LOG_TO_STDOUT'].present?
config.logger = ActiveSupport::TaggedLogging.new(Logger.new(STDOUT))
end

config.log_formatter = ::Logger::Formatter.new

最佳答案

在 Rails5 中,silence 方法已从 ::Logger 基类中删除(参见 issue)

因此,要传递一个 ::Logger 实例,请尝试传递一个公开 silence 方法的 ActiveSupport::Logger 实例(参见documentation ),像这样:

config.logger = ActiveSupport::TaggedLogging.new(ActiveSupport::Logger.new(STDOUT))

注意:ActiveSupport::Logger 继承自 ::Logger 基类并包含 LoggerSilence 模块(参见 documentation )

来 self 的 rails 控制台的示例(rails5 和 ruby​​2.3.​​0)

logger = ActiveSupport::TaggedLogging.new(Logger.new(STDOUT))
=> #<Logger:0x007f890b8a3d10 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x007f890b8a2cd0 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x007f890b8a26e0 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x007f890b8a2870 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<IO:<STDOUT>>, @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x007f890b8a2730>>>
logger.silence
NoMethodError: undefined method `silence' for #<Logger:0x007f890b8a3d10>
# ...

logger = ActiveSupport::TaggedLogging.new(ActiveSupport::Logger.new(STDOUT))
=> #<ActiveSupport::Logger:0x007f890bd2a028 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x007f890bd29fb0 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x007f890bd29f10 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x007f890bd29f60 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<IO:<STDOUT>>, @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x007f890bd29f38>>, @local_levels=#<Concurrent::Map:0x007f890bd29ec0 entries=0 default_proc=nil>>
logger.silence
LocalJumpError: no block given (yield)
# The method exists, but I don't pass any block

关于ruby-on-rails - ActionView::Template::Error(未定义方法 `silence' 为),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38360000/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com