feat: log info about rb recording session

This commit is contained in:
karishmas6
2024-06-08 23:19:10 +05:30
parent b5e177cd2b
commit 99080b4596

View File

@@ -16,3 +16,11 @@ import logger from "../logger";
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}`)
next() // pass control to the next handler
})