Disable warn log

This commit is contained in:
Jim LAURIE 2019-01-31 15:14:50 +01:00
parent 872e0c9fe7
commit b1a47ff075

View File

@ -156,7 +156,11 @@ module.exports = strapi => {
fs.mkdirSync(fileDirectory);
}
options.log = undefined;
// Disable warn log
// .returning() is not supported by sqlite3 and will not have any effect.
options.log = {
warn: () => {}
};
break;
}