Rails 开发日志输出 - 如何停止记录后续资产(例如 javascript、图像)的 GET?
在 Ruby on Rails 中,就开发日志记录(即您在控制台中看到的内容)而言,如何停止记录后续资产(例如 javascript、图像)的 GET?也就是说,调用主操作之后发生的所有后续 GET。
对于每次有效的交互,我都会得到一堆像下面这样的行,最好不要看到......
于 2012 年 2 月 21 日开始为 10.1.1.1 获取“/assets/jquery_ujs.js?body=1” 09:42:46 +1000 已提供资源 /jquery_ujs.js - 304 未修改(1 毫秒)
In Ruby on Rails, in terms of the development logging (i.e. what you see in the console) - how can I stop the GETs for subsequent assets (e.g. javascript, images) getting logged? That is, all the subsequent GET's that occur after the main action is called.
For each valid interaction I get a heap of lines like the following that would be good not to have to see...
Started GET "/assets/jquery_ujs.js?body=1" for 10.1.1.1 at 2012-02-21
09:42:46 +1000 Served asset /jquery_ujs.js - 304 Not Modified (1ms)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 Rails GitHub 问题页面上备受争议的问题。
请参阅: https://github.com/rails/rails/issues/2639
基本上你可以使用以下配置值
config.assets.logger = false
隐藏与 Sprockets 相关的任何日志,但这实际上不会隐藏开发日志中的
GET
请求(请参阅<一个href="https://github.com/rails/rails/pull/3795#issuecomment-3549669" rel="nofollow">Jose Valim 的解释)完全隐藏所有资产消息,使用描述的补丁 这里。
This has been a hotly debated issue on the Rails GitHub issues page.
see: https://github.com/rails/rails/issues/2639
Basically you can hide any logs related to Sprockets using the following config value
config.assets.logger = false
But this won't actually hide the
GET
requests in the development log (see Jose Valim's explanation)To fully hide all asset messages, use the patch described here.