This commit is contained in:
Luis Leiva 2017-12-17 23:46:25 +01:00
parent 4c44427e19
commit 8424e2c47a
2 changed files with 3 additions and 1 deletions

View File

@ -239,7 +239,7 @@
var contents = build(); var contents = build();
callback(contents); callback(contents);
} else { } else {
console.info('Waiting for queue to be empty:', asyncQueue); console.info('Waiting for %s async operations to be finished ...', asyncOps);
} }
} }

View File

@ -268,6 +268,8 @@
// User has not defined this event, so attach our listener. // User has not defined this event, so attach our listener.
options.events[evName] = listener; options.events[evName] = listener;
} }
return this;
}, },
}; };