Fix #332; add more helpful errors

This commit is contained in:
Calvin Montgomery 2014-03-09 11:42:45 -05:00
parent 5e152c8310
commit e841196570
3 changed files with 4 additions and 2 deletions

View File

@ -872,7 +872,7 @@ Channel.prototype.handleBanAllIP = function (actor, name, reason, range) {
}
ips.forEach(function (ip) {
self.banIP(actor, ip, name, range);
self.banIP(actor, ip, name, reason, range);
});
});
};

View File

@ -115,6 +115,7 @@ exports.load = function (file) {
return;
} else {
Logger.errlog.log("Error loading config file " + file + ": ");
Logger.errlog.log(e);
if (e.stack) {
Logger.errlog.log(e.stack);
}
@ -185,7 +186,7 @@ function preprocessConfig(cfg) {
}
cfg.https["full-address"] = httpsfa;
}
// Generate RegExps for reserved names
var reserved = cfg["reserved-names"];
for (var key in reserved) {

View File

@ -22,6 +22,7 @@ module.exports.init = function () {
pool.getConnection(function (err, conn) {
if(err) {
Logger.errlog.log("! DB connection failed");
Logger.errlog.log(err);
return;
} else {
tables.init(module.exports.query, function (err) {