Merge pull request #61 from netsgnut/fix-pg-log
Fix 'undefined is not a function' problem at postgres adapter
This commit is contained in:
commit
a02fbbb4df
|
@ -46,7 +46,7 @@ PG.prototype.query = function (sql, callback) {
|
||||||
var time = Date.now();
|
var time = Date.now();
|
||||||
var log = this.log;
|
var log = this.log;
|
||||||
this.client.query(sql, function (err, data) {
|
this.client.query(sql, function (err, data) {
|
||||||
log(sql, time);
|
if (log) log(sql, time);
|
||||||
callback(err, data ? data.rows : null);
|
callback(err, data ? data.rows : null);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue