Rails 开发日志输出 - 如何停止记录后续资产(例如 javascript、图像)的 GET?

发布于 2025-01-08 01:43:09 字数 307 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可可 2025-01-15 01:43:09

这是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文