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 })