From 7daa8c9295f730f569b2802748a1a055e4bc740b Mon Sep 17 00:00:00 2001 From: Neshura Date: Sun, 11 Dec 2022 17:14:23 +0100 Subject: [PATCH] Removed Debug logging --- pages/services.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pages/services.tsx b/pages/services.tsx index bdf57e9..1426db7 100644 --- a/pages/services.tsx +++ b/pages/services.tsx @@ -125,11 +125,6 @@ async function getStatus(entry: Service, containers: Dockerode.ContainerInfo[]) } // If container name is not missing the container is set to offline else if (entry.docker_container_name !== null) { - // DEBUG - console.log(container.Names.includes("/" + entry.docker_container_name)) - console.log("/" + entry.docker_container_name); - console.log(container.Names[0]); - // DEBUG console.warn("Container for " + entry.name + " could not be found"); entry.status = ServiceStatus.offline; } @@ -191,8 +186,6 @@ function useServices() { const { data: fullData, error: fullError } = useSWR((initialData && containerData) ? [containerData, initialData] : null, fetchFullDataArray) const loadingFull = !fullData && !fullError - console.log(fullError) // DEBUG - return { initialData, fullData,