为什么控制台的 ActiveRecord 查询会打印 sql 语句?

发布于 2024-12-12 11:40:08 字数 148 浏览 1 评论 0原文

我使用 pry,来自控制台的 ActiveRecord 查询总是打印出相应的 SQL 语句。我不想要这种行为。谷歌搜索后我只发现这必须通过将 ActiveRecord 记录器设置为标准输出来显式实现。

这是 pry 的默认行为还是我忘记设置的结果?我怎样才能阻止它?

I'm using pry, and ActiveRecord queries from the console always print out their corresponding SQL statements. I don't want this behavior. Googling around I only see that this must be explicitly achieved by setting the ActiveRecord logger to standard out.

Is this the default behavior of pry or is it the result of something I set that I forgot about? And how can I stop it?

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

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

发布评论

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

评论(2

韶华倾负 2024-12-19 11:40:08

尝试在项目根目录或主目录中查找 .irbrc 文件。您可能会看到以下内容或类似内容:

  ActiveRecord::Base.logger = Logger.new(STDOUT)

有时,这会出现在 .irbrc 中包含的另一个脚本中。

YMMV,但我真的很喜欢将 SQL 记录到控制台。给每个人自己的...

Try looking for a .irbrc file in the project root or your home directory. You may see this or similar:

  ActiveRecord::Base.logger = Logger.new(STDOUT)

Sometimes this ends up in another script that gets included in .irbrc.

YMMV, but I really like having SQL logged to the console. To each his own...

苯莒 2024-12-19 11:40:08

如果您使用 Rails 3.1+,这现在是默认行为。检查此处在控制台中禁用 Rails SQL 日志记录

If you are using Rails 3.1+ this is now the default behaviour. Check here Disable Rails SQL logging in console

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