I’m using Rails4 with postgres as my database – because I’m using quite a lot of postgres–specific features, my schema is stored in .sql format (I’m not sure if it changes anything, but just in case…)
Currently, when I’m running tests, my console output is flooded with following logs:
SET
Time: 2.822 ms
CREATE EXTENSION
Time: 11.300 ms
(...)
COMMENT
CREATE TABLE
Time: 1.532 ms
(...)
INSERT 0 1
Time: 0.326 ms
I traced which task adds them, and they are created in db:structure:load
task.
Is there any way to suppress them?
I added min_messages: warning
to my database.yml
config, but unfortunately it didn’t change anything.