5

防护输出窗口填满

D, [2012-11-19T18:36:30.391459 #53057] DEBUG -- :    (0.1ms)  begin transaction
D, [2012-11-19T18:36:30.392668 #53057] DEBUG -- :   SQL (0.4ms)  INSERT INTO "foo" ("created_at", "id", "foo", "foo", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?)  [["created_at", 2012-11-19 18:36:30 -0800], ["id", 4], ["bar", 2], ["foo", 12], ["updated_at", 2012-11-19 18:36:30 -0800], ["value", true]]
D, [2012-11-19T18:36:30.393572 #53057] DEBUG -- :    (0.7ms)  commit transaction

如何关闭此输出?

我试过ActiveRecord::Base.logger = nil了,但这似乎没有任何作用。

使用sinatra-activerecord,rspecguard.

4

1 回答 1

8
ActiveRecord::Base.logger.level = 1

任何值为 1 或更大的作品。我想它也可能适用于其他数据库。

参考

于 2012-11-20T13:06:17.393 回答