Executing (default): INSERT INTO `acceptable_answer` (`id`,`question_id`,`value`) VALUES ('ccf23a93-a6ac-11e4-9e63-e5ef230294ec','ccdf27c0-a6ac-11e4-9e63-e5ef230294ec','blaz');
I get this printed onto the console by default. How do I turn them off?
Pass logging: false to the sequelize constructor.
Generally we like to keep GitHub to actual issues and discussions :)
var sequelize = new Sequelize('', '', '', {
logging: false
});
Most helpful comment
Pass
logging: falseto the sequelize constructor.Generally we like to keep GitHub to actual issues and discussions :)