0

I want to log warn messages to a file like warn.log, error messages to a file like error.log. I've googled so many pages and also the StackOverFlow, but I didn't find some parallel topics. Do you have any good suggestions?

4

1 に答える 1

0

この宝石multi_level_loggerを使用してください

に次を追加しますconfig/environments/production.rb

config.logger =  MultiLevelLogger::MLogger.create(:all=>true)

これで、ログが個別のファイルに書き込まれます。デフォルトのロガーは無効になります。

詳細については、こちらを確認してください

于 2014-06-03T14:12:46.843 に答える