Skip to content

Commit fcbd41f

Browse files
committed
For both lambda and fastify make sure we flush the logger at the end of every request.
1 parent 73a895a commit fcbd41f

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

src/packages/server/src/integrations/fastify.ts

+3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ export const startStandaloneServer = async <TContext extends BaseContext>(
4747
onRequestWrapper(plugins, async () => done());
4848
});
4949

50+
// Always flush the logger on each request so logs get persisted.
51+
fastify.addHook('onResponse', async () => logger.flush());
52+
5053
fastify.get('/health', async (_, reply) => {
5154
reply.statusCode = 200;
5255
reply.send({

src/packages/server/src/integrations/lambda.ts

+10-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { ApolloServer } from '@apollo/server';
22
import { handlers, startServerAndCreateLambdaHandler } from '@as-integrations/aws-lambda';
33
import { GraphweaverPlugin } from '@exogee/graphweaver';
44
import { onRequestWrapper } from './utils';
5+
import { logger } from '@exogee/logger';
56

67
export const startServerless = ({
78
server,
@@ -17,10 +18,15 @@ export const startServerless = ({
1718

1819
return (event, context) =>
1920
onRequestWrapper(graphweaverPlugins, async () => {
20-
const res = await handler(event, context, () => {});
21-
if (!res) {
22-
throw new Error('Handler Response was undefined or null.');
21+
try {
22+
const res = await handler(event, context, () => {});
23+
if (!res) {
24+
throw new Error('Handler Response was undefined or null.');
25+
}
26+
return res;
27+
} finally {
28+
// Ensure we always flush logs on each request.
29+
logger.flush();
2330
}
24-
return res;
2531
});
2632
};

0 commit comments

Comments
 (0)