Skip to content

Commit c45928c

Browse files
committed
cleanup logs
1 parent 756b865 commit c45928c

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

backend/instance.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ export class Instances {
134134
instance.webXdc.sendRealtimeData(parsed.data);
135135
} else if (isSetRealtimeListenerMessage(parsed)) {
136136
instance.webXdc.connectRealtime((data) => {
137-
console.warn("broadcasting leeeeeel")
138137
return broadcast(wss, JSON.stringify({ type: "sendRealtime", data }));
139138
});
140139
} else if (isSetUpdateListenerMessage(parsed)) {

backend/message.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ class Client implements WebXdcMulti {
102102
}
103103

104104
connectRealtime(listener: RealtimeListenerListener) {
105-
console.warn("connecting realtime")
106105
this.processor.onMessage({
107106
type: "connect-realtime",
108107
instanceId: this.id,
@@ -193,7 +192,6 @@ class Client implements WebXdcMulti {
193192
if (this.realtimeListener == null) {
194193
return;
195194
}
196-
console.warn("hiiiii");
197195
this.realtimeListener(data);
198196
}
199197

0 commit comments

Comments
 (0)