Skip to content

Commit

Permalink
Merge pull request #452 from benjie/patch-1
Browse files Browse the repository at this point in the history
Correct sqlite log statement.
  • Loading branch information
dxg committed Feb 18, 2014
2 parents ca76135 + e29ef7b commit ac631bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Drivers/DML/sqlite.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Driver.prototype.getQuery = function () {

Driver.prototype.execSimpleQuery = function (query, cb) {
if (this.opts.debug) {
require("../../Debug").sql('mysql', query);
require("../../Debug").sql('sqlite', query);
}
this.db.all(query, cb);
};
Expand Down

0 comments on commit ac631bf

Please sign in to comment.