Skip to content

Commit 7bebf6f

Browse files
dkundelvictoray
andauthored
fix(@twilio/runtime-handler): add cross-fork logger instance for local dev (#459)
Co-authored-by: Victor A <[email protected]>
1 parent 4432c02 commit 7bebf6f

File tree

4 files changed

+70
-1
lines changed

4 files changed

+70
-1
lines changed

.changeset/forty-snails-rescue.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@twilio/runtime-handler': patch
3+
---
4+
5+
Fix error messages in local development
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import { LoggerInstance } from '../types';
2+
3+
export class CrossForkLogger implements LoggerInstance {
4+
constructor() {}
5+
6+
debug(msg: string) {
7+
this.sendLog('debug', msg);
8+
}
9+
10+
info(msg: string) {
11+
this.sendLog('info', msg);
12+
}
13+
14+
warn(msg: string, title: string = '') {
15+
this.sendLog('warn', msg, title);
16+
}
17+
18+
error(msg: string, title: string = '') {
19+
this.sendLog('error', msg, title);
20+
}
21+
22+
log(msg: string, level: number) {
23+
this.sendLog('log', msg, level);
24+
}
25+
26+
private sendLog(level: keyof LoggerInstance, ...args: (string | number)[]) {
27+
process.send &&
28+
process.send({
29+
crossForkLogMessage: {
30+
level,
31+
args: args,
32+
},
33+
});
34+
}
35+
}

packages/runtime-handler/src/dev-runtime/internal/functionRunner.ts

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
isTwiml,
88
} from '../route';
99
import { ServerConfig, Headers } from '../types';
10+
import { CrossForkLogger } from './crossForkLogger';
1011
import { Response } from './response';
1112
import { setRoutes } from './route-cache';
1213

@@ -61,12 +62,19 @@ const handleSuccess = (responseObject?: string | number | boolean | object) => {
6162
}
6263
};
6364

65+
process.on('uncaughtException', (err, origin) => {
66+
if (process.send) {
67+
process.send({ err: serializeError(err) });
68+
}
69+
});
70+
6471
process.on(
6572
'message',
6673
({ functionPath, event, config, path }: FunctionRunnerOptions) => {
6774
try {
6875
setRoutes(config.routes);
6976
constructGlobalScope(config);
77+
config.logger = new CrossForkLogger();
7078
let context = constructContext(config, path);
7179
sendDebugMessage('Context for %s: %p', path, context);
7280
context = augmentContextWithOptionals(config, context);

packages/runtime-handler/src/dev-runtime/route.ts

+22-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import {
2626
import { Reply } from './internal/functionRunner';
2727
import { Response } from './internal/response';
2828
import * as Runtime from './internal/runtime';
29-
import { ServerConfig } from './types';
29+
import { LoggerInstance, ServerConfig } from './types';
3030
import debug from './utils/debug';
3131
import { wrapErrorInHtml } from './utils/error-html';
3232
import { getCodeLocation } from './utils/getCodeLocation';
@@ -303,25 +303,46 @@ export function functionPathToRoute(
303303
reply,
304304
debugMessage,
305305
debugArgs = [],
306+
crossForkLogMessage,
306307
}: {
307308
err?: Error | number | string;
308309
reply?: Reply;
309310
debugMessage?: string;
310311
debugArgs?: any[];
312+
crossForkLogMessage?: {
313+
level: keyof LoggerInstance;
314+
args: [string] | [string, number] | [string, string];
315+
};
311316
}) => {
312317
if (debugMessage) {
313318
log(debugMessage, ...debugArgs);
314319
return;
315320
}
321+
322+
if (crossForkLogMessage) {
323+
if (
324+
config.logger &&
325+
typeof config.logger[crossForkLogMessage.level] === 'function'
326+
) {
327+
config.logger[crossForkLogMessage.level](
328+
// @ts-ignore
329+
...crossForkLogMessage.args
330+
);
331+
}
332+
return;
333+
}
334+
316335
if (err) {
317336
const error = deserializeError(err);
318337
handleError(error, req, res, functionPath);
319338
}
339+
320340
if (reply) {
321341
res.status(reply.statusCode);
322342
res.set(reply.headers);
323343
res.send(reply.body);
324344
}
345+
325346
forked.kill();
326347
}
327348
);

0 commit comments

Comments
 (0)