chore: remove start/post ids log
This commit is contained in:
@@ -57,7 +57,6 @@ router.get('/start', requireSignIn, async (req: AuthenticatedRequest, res: Respo
|
|||||||
}
|
}
|
||||||
|
|
||||||
const id = initializeRemoteBrowserForRecording(req.user.id);
|
const id = initializeRemoteBrowserForRecording(req.user.id);
|
||||||
console.log('id start:', id);
|
|
||||||
return res.send(id);
|
return res.send(id);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -70,7 +69,6 @@ router.post('/start', requireSignIn, (req: AuthenticatedRequest, res:Response) =
|
|||||||
return res.status(401).send('User not authenticated');
|
return res.status(401).send('User not authenticated');
|
||||||
}
|
}
|
||||||
const id = initializeRemoteBrowserForRecording(req.user.id);
|
const id = initializeRemoteBrowserForRecording(req.user.id);
|
||||||
console.log('id start POST:', id);
|
|
||||||
return res.send(id);
|
return res.send(id);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user