LoginSignup
6
5

More than 5 years have passed since last update.

Rails.loggerのファイルのパスを指定する

Posted at

config.paths["log"]に指定する。

config/application.rb
config.paths["log"] = "log/#{Rails.env}_hoge.log"

ロガーのインスタンス自体を指定する場合にはconfig.loggerに指定する。

config/application.rb
config.logger = Logger.new($stdout)
6
5
1

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
6
5