From 48717ce77bdf709798e406db3b4e966ad8ba34a8 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 9 Jun 2024 00:40:13 +0530 Subject: [PATCH] chore: lint --- server/src/routes/record.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/routes/record.ts b/server/src/routes/record.ts index 5fc9428f..da62bf8e 100644 --- a/server/src/routes/record.ts +++ b/server/src/routes/record.ts @@ -20,7 +20,7 @@ export const router = Router(); * Logs information about remote browser recording session. */ router.all('/', (req, res, next) => { - logger.log('debug',`The record API was invoked: ${req.url}`) + logger.log('debug', `The record API was invoked: ${req.url}`) next() // pass control to the next handler })