From bc3d2169158193c29721c1c9394933e9230e2840 Mon Sep 17 00:00:00 2001 From: legop3 Date: Tue, 18 Nov 2025 17:11:05 -0500 Subject: [PATCH] log --- server/src/services/videoAuthService.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/services/videoAuthService.js b/server/src/services/videoAuthService.js index e7374fc9..ad811280 100644 --- a/server/src/services/videoAuthService.js +++ b/server/src/services/videoAuthService.js @@ -68,6 +68,7 @@ app.post('/mediamtx/auth', (req, res) => { const path = (body.path || '').replace(/^\//, ''); const sessionId = body.user; const roverId = extractRoverId(path); + logger.info('video auth request', { path: body.path, sessionId, roverId }); if (!sessionId || !roverId) { logger.warn('auth missing session or rover (session=%s path=%s)', sessionId, path);