Skip to content

Commit

Permalink
Comment out console.log as they are causing too much output on consol…
Browse files Browse the repository at this point in the history
…e. If someone needs to see contacts, he can console it in callback.

At lines 135, 136

Now
//console.log(self.contacts);
//console.log(self.contacts.length);


Before
console.log(self.contacts);
console.log(self.contacts.length);
  • Loading branch information
Muhammad Bilal committed May 18, 2015
1 parent c138819 commit d4c2d4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ GoogleContacts.prototype._saveContactsFromFeed = function (feed) {
// property not available...
}
});
console.log(self.contacts);
console.log(self.contacts.length);
//console.log(self.contacts);
//console.log(self.contacts.length);
}

GoogleContacts.prototype._buildPath = function (params) {
Expand Down

0 comments on commit d4c2d4d

Please sign in to comment.