fix(webhook/handler): log whole computed payload
This commit is contained in:
@@ -23,7 +23,7 @@ export default async (request: IRequest, response: Response) => {
|
|||||||
query: request.query,
|
query: request.query,
|
||||||
};
|
};
|
||||||
logger.debug(`Handling incoming webhook request at ${request.originalUrl}.`);
|
logger.debug(`Handling incoming webhook request at ${request.originalUrl}.`);
|
||||||
logger.debug(computedRequestPayload);
|
logger.debug(JSON.stringify(computedRequestPayload, null, 2));
|
||||||
|
|
||||||
const flow = await Flow.query()
|
const flow = await Flow.query()
|
||||||
.findById(flowId)
|
.findById(flowId)
|
||||||
|
Reference in New Issue
Block a user