From e0749405f01ab23ac1870087b8726d9a04ff9dbd Mon Sep 17 00:00:00 2001 From: mario Date: Wed, 12 Mar 2025 08:53:39 +0700 Subject: [PATCH] delete forgotten logger --- src/routes/routes.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/routes/routes.ts b/src/routes/routes.ts index d13db90..2fd97c8 100644 --- a/src/routes/routes.ts +++ b/src/routes/routes.ts @@ -49,9 +49,6 @@ module.exports = function (server: FastifyInstance, opts: unknown, done: () => v query.StudyDate = `${startDate}-${endDate}`; } - logger.info(`Query: ${JSON.stringify(query)} \n`); - logger.info(`URL: ${req.url} \n`); - const json = deepmerge.all(await doFind(QUERY_LEVEL.STUDY, query), options); return reply.send(json); } catch (error) {