add logging

This commit is contained in:
Darius
2026-02-05 23:54:10 +01:00
parent 7ef755f120
commit 34fee498eb

View File

@@ -16,7 +16,6 @@ export class HomepageService extends BaseService<null> {
private tidalService: TidalService;
private sseService: SseService;
private pollingInterval: ReturnType<typeof setInterval> | null = null;
private songEndTimeout: ReturnType<typeof setTimeout> | null = null;
private lastPoll: FullInformation | null = null;
constructor(
@@ -87,6 +86,7 @@ export class HomepageService extends BaseService<null> {
}
if (updates.length > 0) {
logInfo("Updating clients");
this.sseService.notifyClients({
type: "update",
data: updates,