当我查看development.log时 - 我没有看到我的日志评论。请帮忙。
class Event < ActiveRecord::Base
def vir_starttime
Rails.logger.warn "sharad verma is logging"
end
end
答案 0 :(得分:0)
试试这个:
class Event < ActiveRecord::Base
def vir_starttime
puts "sharad verma is logging"
# you also can use Rails.logger.info
end
end