Add api logs back in
This commit is contained in:
@@ -2,12 +2,11 @@ import { createUserInsecure } from 'src/services/users/users.js'
|
|||||||
import { db } from 'src/lib/db'
|
import { db } from 'src/lib/db'
|
||||||
import { sentryWrapper } from 'src/lib/sentry'
|
import { sentryWrapper } from 'src/lib/sentry'
|
||||||
import { enforceAlphaNumeric, generateUniqueString } from 'src/services/helpers'
|
import { enforceAlphaNumeric, generateUniqueString } from 'src/services/helpers'
|
||||||
import 'graphql-tag'
|
|
||||||
|
|
||||||
const unWrappedHandler = async (req, _context) => {
|
const unWrappedHandler = async (req, _context) => {
|
||||||
const body = JSON.parse(req.body)
|
const body = JSON.parse(req.body)
|
||||||
// console.log(body)
|
console.log(body)
|
||||||
// console.log(_context)
|
console.log(_context)
|
||||||
// DUMP FROM THE LOGS ABOVE
|
// DUMP FROM THE LOGS ABOVE
|
||||||
/*
|
/*
|
||||||
5:09:30 AM: 2020-10-19T18:09:30.011Z 9da27e24-b6ec-404e-8e7d-25b5d323b67a INFO {
|
5:09:30 AM: 2020-10-19T18:09:30.011Z 9da27e24-b6ec-404e-8e7d-25b5d323b67a INFO {
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ export const updatePart = async ({ id, input }) => {
|
|||||||
where: { id },
|
where: { id },
|
||||||
})
|
})
|
||||||
if (imageToDestroy) {
|
if (imageToDestroy) {
|
||||||
// console.log(`image destroyed, publicId: ${imageToDestroy}, partId: ${id}`)
|
console.log(`image destroyed, publicId: ${imageToDestroy}, partId: ${id}`)
|
||||||
// destroy after the db has been updated
|
// destroy after the db has been updated
|
||||||
destroyImage({ publicId: imageToDestroy })
|
destroyImage({ publicId: imageToDestroy })
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user