How to rotate, override, or turn off logging from Sunspot Solr Rubygem?

前端 未结 5 693
予麋鹿
予麋鹿 2021-02-06 10:48

I\'ve had great experiences with Sunspot Solr search for Ruby on Rails, however, its log files are growing incredibly large and I can\'t seem to find a way to either rot

5条回答
  •  庸人自扰
    2021-02-06 11:22

    In the console, this turns off all logging for me:

    Sunspot::Rails::LogSubscriber.logger.level = 4
    ActiveRecord::Base.logger.level = 4
    Rails.logger.level = 4
    

    My Gem versions:

    • sunspot (2.0.0.pre.130115)
    • sunspot_rails (2.0.0.pre.130115)
    • sunspot_solr (2.0.0.pre.130115)

提交回复
热议问题