/**
* Consumes the promise and logs the error when it rejects.
* @param promise A promise to forget.
*/exportfunctionforget(promise) {
promise.then(null, function (e) {
// TODO: Use a better logging mechanismconsole.error(e);
});
}
//# sourceMappingURL=async.js.map