fix(api): update logging in route -- status

This commit is contained in:
Mrugesh Mohapatra
2025-02-17 19:50:56 +05:30
parent 042f309e3d
commit 4e80c211ff
+1 -1
View File
@@ -14,7 +14,7 @@ export const statusRoute: FastifyPluginCallbackTypebox = (
done
) => {
fastify.get('/status/ping', async (req, _reply) => {
fastify.log.child({ req }).debug('returning a ping');
fastify.log.child({ req }).debug('pong');
return { msg: 'pong' };
});