diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-08 08:07:05 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-08 08:07:05 +0100 |
| commit | 6efde13e05ce8f516672106d93eeaa0c5224bc42 (patch) | |
| tree | c6f4ca4c46145104a357247dc5d8cb0faea719f7 /api-src | |
| parent | bf749ae1600696efc55ebf1cf44c7637afa8b0c7 (diff) | |
Removes logs
Diffstat (limited to 'api-src')
| -rw-r--r-- | api-src/createPaypalOrder.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/api-src/createPaypalOrder.ts b/api-src/createPaypalOrder.ts index aba6ce7..0ae9f8f 100644 --- a/api-src/createPaypalOrder.ts +++ b/api-src/createPaypalOrder.ts @@ -4,10 +4,6 @@ import { paypalCreateOrder } from './_paypal'; export default async function handler(request: VercelRequest, response: VercelResponse) { const { productDescription, shortDescription, totalPrice }: Partial<Order> = request.body; - console.info('api/createPaypalOrder: Received body: '); - console.info('productDescription: ' + productDescription); - console.info('shortDescription: ' + shortDescription); - console.info('totalPrice: ' + totalPrice); if (!productDescription) { response.status(400).send('Expected body to contain productDescription, but none provided.'); |
