Skip to content

Commit

Permalink
Remove console.log statement in server.js
Browse files Browse the repository at this point in the history
  • Loading branch information
infinitel8p committed Nov 13, 2023
1 parent 039af58 commit 446e341
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ wss.on('connection', function connection(ws) {
}

if (data.toString() === 'Recording in progress' && clientId === 'Python Script') {
console.log('Recording in progress, notifying browsers...');
Object.values(clients).forEach(client => {
if (client !== ws && client.readyState === WebSocket.OPEN) {
client.send("Recording in progress");
Expand Down

0 comments on commit 446e341

Please sign in to comment.