Merge pull request #34 from eugene-frb/master
1. Error logging. 2. Options argument of model's include function to …
This commit is contained in:
commit
26712a7014
lib
|
@ -406,6 +406,10 @@ SQLConnector.prototype.execute = function(sql, params, options, callback) {
|
||||||
};
|
};
|
||||||
this.notifyObserversAround('execute', context, function(context, done) {
|
this.notifyObserversAround('execute', context, function(context, done) {
|
||||||
self.executeSQL(context.req.sql, context.req.params, context.options, function(err, info) {
|
self.executeSQL(context.req.sql, context.req.params, context.options, function(err, info) {
|
||||||
|
if(err){
|
||||||
|
debug('Error: %j %j %j', err, context.req.sql, context.req.params);
|
||||||
|
}
|
||||||
|
|
||||||
if (!err && info != null) {
|
if (!err && info != null) {
|
||||||
context.res = info;
|
context.res = info;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue