Skip to content

Commit

Permalink
Remove unnecessary console logs from SSE initialization in settingsBa…
Browse files Browse the repository at this point in the history
…se.html
  • Loading branch information
tphakala committed Jan 9, 2025
1 parent 111e591 commit 310336e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions views/settings/settingsBase.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
return; // Already initialized
}

console.log('SSE: Initializing new connection');
this.eventSource = new EventSource('/sse');
this.eventSource.onmessage = (event) => {
const notification = JSON.parse(event.data);
Expand Down Expand Up @@ -112,7 +111,6 @@
init() {
if (this.initialized) {
console.log('SSE: Already initialized for this component');
return;
}
Expand Down

0 comments on commit 310336e

Please sign in to comment.