Skip to content
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.

Commit

Permalink
chore(Semistandard): remove log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Sjors committed Jan 18, 2017
1 parent ccd51af commit 5d7f882
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/exchange-delegate.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,18 +77,14 @@ ExchangeDelegate.prototype.getEmailToken = function () {
};

ExchangeDelegate.prototype.getToken = function (partner) {
console.log('getToken()', partner);
console.log(this);
let fields = {
guid: this._wallet.guid,
sharedKey: this._wallet.sharedKey,
fields: 'email|mobile'
};
console.log('Fields...')
if (partner) {
fields.partner = partner;
}
console.log(fields);
return API.request(
'GET',
'wallet/signed-token',
Expand Down

0 comments on commit 5d7f882

Please sign in to comment.