Minor tweaks to specific error conditions

This commit is contained in:
Calvin Montgomery 2018-02-24 19:51:16 -08:00
parent 79556d9365
commit 726a5bf7c4
2 changed files with 10 additions and 13 deletions

View file

@ -320,9 +320,12 @@ Channel.prototype.checkModules = function (fn, args, cb) {
if (!self.modules) {
LOGGER.warn(
'checkModules(%s): self.modules is undefined; dead=%s',
'checkModules(%s): self.modules is undefined; dead=%s,' +
' current=%s, remaining=%s',
fn,
self.dead
self.dead,
m,
keys
);
return;
}