Skip to content

Commit

Permalink
add console regarding connecting process
Browse files Browse the repository at this point in the history
  • Loading branch information
WvanDam committed Sep 2, 2024
1 parent 3b7a07b commit 41f0599
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/services/WebRTC/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ const onReceiveMessage = function onReceiveMessage(event: MessageEvent) {
*/
export const setRemoteDescription = async function setRemoteDescription(description: RTCSessionDescription) {
try {
console.log("WebRTC - setting remote description")
console.log("WebRTC - setting remote description", description)

const WebRTC = getWebRTCConnection()
if (WebRTC === null) {
Expand Down
2 changes: 1 addition & 1 deletion src/services/websocket/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ export const handleResponseMessage = function handleResponseMessage(event: Messa

command.status = 'handled'

console.log("Websocket - message has been handled", message.id)
console.log("Websocket - message has been handled", message.id, message, command)
}

0 comments on commit 41f0599

Please sign in to comment.