3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00

onLoad errors no longer suppressed from console

This commit is contained in:
Sam Nicholls 2013-03-21 00:05:35 +00:00
parent 9b7098a318
commit 8d8cf2bd9a

1
run.js
View File

@ -293,6 +293,7 @@ DBot.prototype.reloadModules = function() {
module.onLoad();
} catch(err) {
this.status[name] = 'Error in onLoad: ' + err + ' ' + err.stack.split('\n')[1].trim();
console.log('MODULE ONLOAD ERROR (' + name + '): ' + err );
}
}
}, this);