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 c0051f1 commit 6739a61Copy full SHA for 6739a61
src/nodeWorker.ts
@@ -107,16 +107,10 @@ function startWorker(input: WorkerRequest) {
107
);
108
109
worker.stdout.on('data', (data: Buffer) => {
110
- Logger.verbose(
111
- `[Function ${input.functionId}] [Worker ${input.workerId}] `,
112
- data.toString(),
113
- );
+ Logger.log(`[Function ${input.functionId}]`, data.toString());
114
});
115
worker.stderr.on('data', (data: Buffer) => {
116
117
118
119
120
121
worker.on('exit', () => {
122
Logger.verbose(
0 commit comments