运行“rails server Thin”时是否有减少冗长的方法? ?我只想查看记录器调试消息

发布于 2024-11-26 12:08:55 字数 80 浏览 2 评论 0原文

有没有办法减少运行“rails server Thin”时看到的垃圾量?现在,我看到了所有 sql 调用和缓存调用,但我只想关注调试/记录器消息。

Is there a way to decrease the amount of cruft that you look at when you're running 'rails server thin'? Right now, I see all the sql calls and cache calls, but I just want to focus on the debug/logger messages.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

自找没趣 2024-12-03 12:08:55

您可以重新配置 ActiveRecord 记录器。编辑development.rb并添加以下行:

ActiveRecord::Base.logger = Logger.new('sql.log') 

You can reconfigure the ActiveRecord logger. Edit development.rb and add the following line:

ActiveRecord::Base.logger = Logger.new('sql.log') 
兔小萌 2024-12-03 12:08:55

如果您在 YAML 中对开发和生产有相同的设置,请尝试使用以下参数启动此服务器:

thin -e production start

If you have same settings in YAML for both development and Production, Try starting the this server with these parameters:

thin -e production start
魔法少女 2024-12-03 12:08:55

我发现 Ryan Bates 修订后的railscast“The Logger”非常有用。

这涵盖了 quiet_assets gem,它会删除与资产相关的日志。

I found Ryan Bates' revised railscast "The Logger" incredibly helpful.

This covers the quiet_assets gem, which removes asset-related logs.

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