LoginSignup
0
2

More than 3 years have passed since last update.

railsでSQLログをapplicationログとは別に出力する

Last updated at Posted at 2019-12-18

railsでSQLログをapplicationログとは別に出力する

applicationログはinfoで出したいけど、別途SQLログも出したい時など

ruby
  ActiveRecord::Base.logger = Logger.new('log/sql.log')
  ActiveRecord::Base.logger.formatter = proc do |severity, timestamp, progname, msg|
    {
      timestamp: timestamp.iso8601,
      LOG_LEVEL: severity,
      message: msg
    }.to_json << "\n"
  end

動作環境

rails 6.0.2
ruby 2.6.3

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2