更改 Rails 应用程序日志记录目录
我是 Rails 新手,但我有一个现有的 Rails 应用程序,我想更改其记录的默认目录。最简单的方法是什么?
I'm new to Rails, but I have an existing Rails application for which I would like to change the default directory where it logs. What is the easiest way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在配置中指定显式记录器;
这将取代 Rails.logger
You can specify an explicit logger in your config;
This will replace Rails.logger
有不同的可能性,在生产服务器上,日志目录通常符号链接到通用日志位置,如果您想将日志写入 Rails 应用程序外部的目录,我建议您这样做。当然,您可以将development.rb/Production.rb/application.rb中的Rails.logger重新初始化为任何Logger/IOStream:
there are different possibilities, on a production server, the log directory usually are sym-linked to a general log location, which i'd recommend if you want to write the logs to a directory outside your rails app. you can of course re-initialize the
Rails.logger
in your development.rb/production.rb/application.rb to any Logger / IOStream:Rails 配置指南 中有关于如何配置记录器以及可用选项的详细信息。
请注意,如果您愿意,您实际上可以为 active_record / action_controller / active_resource / 等设置不同的记录器。这还包括如何通过配置设置 log_level 的详细信息。
There are good details on how to configure loggers and what options are available in this Rails Configuration Guide.
Note you can actually set up different loggers for active_record / action_controller / active_resource / etc, if you want to. This also includes details on how to set log_level via the config.