diff --git a/src/git-repository-async.js b/src/git-repository-async.js index 3475684a1..00b325268 100644 --- a/src/git-repository-async.js +++ b/src/git-repository-async.js @@ -186,7 +186,6 @@ module.exports = class GitRepositoryAsync { const status = this.repoPromise .then(repo => repo.getStatus()) .then(statuses => { - console.log(Object.keys(statuses)) // update the status cache const statusPairs = statuses.map(status => [status.path(), status.statusBit()]) return Promise.all(statusPairs)