We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f04663b commit 2dcb838Copy full SHA for 2dcb838
src/invoker.ts
@@ -352,7 +352,7 @@ function makeHttpHandler(execute: HttpFunction): express.RequestHandler {
352
// Catch unhandled errors originating from this request.
353
d.on('error', err => {
354
if (res.locals.functionExecutionFinished) {
355
- console.log('Ignoring exception from a finished function');
+ console.error(`Exception from a finished function: ${err}`);
356
} else {
357
res.locals.functionExecutionFinished = true;
358
logAndSendError(err, res);
0 commit comments