From 0a7b329daeb2d5398fd2e83c1ceaf84de2b48331 Mon Sep 17 00:00:00 2001 From: CL TheDreWen Date: Wed, 29 Oct 2025 09:38:33 +0100 Subject: [PATCH] Remove debug log for host status in fetchAlive function --- src/services/status.service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/services/status.service.ts b/src/services/status.service.ts index f0ca229..02c566e 100644 --- a/src/services/status.service.ts +++ b/src/services/status.service.ts @@ -102,7 +102,6 @@ export class StatusService { const hosts = this.hosts.filter((value, index) => index < max * 10 && index >= (max - 1) * 10); async function fetchAlive(host: Host) { - console.log(host.name+" "+host.host) if(host.type === 'ping'){ let res = await ping.promise.probe(host.host, {timeout: 3}); host.alive = res.alive;