From 34fee498eb3ab75513152642ee926ff724dc7007 Mon Sep 17 00:00:00 2001 From: Darius Date: Thu, 5 Feb 2026 23:54:10 +0100 Subject: [PATCH] add logging --- src/homepage/service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/homepage/service.ts b/src/homepage/service.ts index f77380e..ca7bac5 100644 --- a/src/homepage/service.ts +++ b/src/homepage/service.ts @@ -16,7 +16,6 @@ export class HomepageService extends BaseService { private tidalService: TidalService; private sseService: SseService; private pollingInterval: ReturnType | null = null; - private songEndTimeout: ReturnType | null = null; private lastPoll: FullInformation | null = null; constructor( @@ -87,6 +86,7 @@ export class HomepageService extends BaseService { } if (updates.length > 0) { + logInfo("Updating clients"); this.sseService.notifyClients({ type: "update", data: updates,