From acb80909a552853dcaece4e674a5dabb9bd3af07 Mon Sep 17 00:00:00 2001 From: Douglas Miller Date: Tue, 18 Jul 2023 16:30:48 -0500 Subject: [PATCH] Small venmo tweaks for development debugging --- lib/recurly/venmo/strategy/braintree.js | 2 +- lib/recurly/venmo/strategy/index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/recurly/venmo/strategy/braintree.js b/lib/recurly/venmo/strategy/braintree.js index 674f1ddff..e4eab1afc 100644 --- a/lib/recurly/venmo/strategy/braintree.js +++ b/lib/recurly/venmo/strategy/braintree.js @@ -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 diff --git a/lib/recurly/venmo/strategy/index.js b/lib/recurly/venmo/strategy/index.js index 87e919b2f..7c64fc0ad 100644 --- a/lib/recurly/venmo/strategy/index.js +++ b/lib/recurly/venmo/strategy/index.js @@ -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 @@ -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 () {