Skip to content

Commit

Permalink
Merge pull request #841 from recurly/venmo-tweaks
Browse files Browse the repository at this point in the history
Small venmo tweaks for development debugging
  • Loading branch information
chrissrogers authored Jul 24, 2024
2 parents d0b6dfd + acb8090 commit e9c0f4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/recurly/venmo/strategy/braintree.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { VenmoStrategy } from './index';
import { normalize } from '../../../util/normalize';
import { BRAINTREE_CLIENT_VERSION } from '../../../const/gateway-constants';

const debug = require('debug')('recurly:paypal:strategy:braintree');
const debug = require('debug')('recurly:venmo:strategy:braintree');

/**
* Braintree-specific Venmo handler
Expand Down
4 changes: 2 additions & 2 deletions lib/recurly/venmo/strategy/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Emitter from 'component-emitter';
import { Recurly } from '../../../recurly';
import errors from '../../errors';

const debug = require('debug')('recurly:paypal:strategy');
const debug = require('debug')('recurly:venmo:strategy');

/**
* Venmo base interface strategy
Expand Down Expand Up @@ -35,7 +35,7 @@ export class VenmoStrategy extends Emitter {
}

/**
* Starts the PayPal flow
* Starts the Venmo flow
* > must be on the call chain with a user interaction (click, touch) on it
*/
start () {
Expand Down

0 comments on commit e9c0f4b

Please sign in to comment.