Skip to content

Commit

Permalink
fix: Log function signature type (#228)
Browse files Browse the repository at this point in the history
Fix issue #227
  • Loading branch information
hdp617 committed Oct 16, 2020
1 parent 1ca74ae commit 0726a2d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ SERVER.listen(PORT, () => {
if (process.env.NODE_ENV !== NodeEnv.PRODUCTION) {
console.log('Serving function...');
console.log(`Function: ${TARGET}`);
console.log(`Signature type: ${SIGNATURE_TYPE}`);
console.log(`URL: http://localhost:${PORT}/`);
}
}).setTimeout(0); // Disable automatic timeout on incoming connections.

0 comments on commit 0726a2d

Please sign in to comment.