Remove unused console.log

This commit is contained in:
Jordan Eldredge 2018-03-15 22:55:43 -07:00
parent a277a72f57
commit 25e64e5219

View file

@ -38,7 +38,6 @@ export default class LoadQueue {
}
this._avaliableThreads--;
const t = this._queue.pop();
console.log({ priority: t.priority() });
const promise = t.task();
invariant(
typeof promise.then === "function",