Skip to content

Commit f0bea6c

Browse files
committed
Removes console.log(err) in sqlite DDL
1 parent 3313e36 commit f0bea6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Drivers/DDL/sqlite.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ exports.sync = function (driver, opts, cb) {
116116
pending = queries.length;
117117
for (i = 0; i < queries.length; i++) {
118118
driver.db.all(queries[i], function (err) {
119-
if (err) console.log(err);
119+
// if (err) console.log(err);
120120
if (--pending === 0) {
121121
return cb(err);
122122
}

0 commit comments

Comments
 (0)