From aa31c6c96fce96734e71f05e8e6bfe214873a38c Mon Sep 17 00:00:00 2001 From: joshaber Date: Wed, 2 Dec 2015 13:54:53 -0500 Subject: [PATCH] Don't log anymore. --- src/git-repository-async.js | 1 - 1 file changed, 1 deletion(-) 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)