diff --git a/functions/src/api.ts b/functions/src/api.ts index b967d2d1..fdda0ad5 100644 --- a/functions/src/api.ts +++ b/functions/src/api.ts @@ -123,7 +123,7 @@ export const newEndpoint = (endpointOpts: EndpointOptions, fn: Handler) => { return { opts, handler: async (req: Request, res: Response) => { - log('Request processing started.') + log(`${req.method} ${req.url} ${JSON.stringify(req.body)}`) try { if (opts.method !== req.method) { throw new APIError(405, `This endpoint supports only ${opts.method}.`)