Fix 'undefined is not a function' problem at postgres adapter

This commit is contained in:
Kelvin Wong 2012-04-12 01:51:55 +08:00
parent 6be57cf454
commit f16d0573c5
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ PG.prototype.query = function (sql, callback) {
var time = Date.now();
var log = this.log;
this.client.query(sql, function (err, data) {
log(sql, time);
if (log) log(sql, time);
callback(err, data ? data.rows : null);
});
};