From b8626cb8eab54819fce920dce3a63e65d81b6106 Mon Sep 17 00:00:00 2001 From: daniel-hbn Date: Fri, 3 Oct 2025 13:02:36 +0200 Subject: [PATCH] Debug Logs entfernt --- Watcher/Controllers/HomeController.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Watcher/Controllers/HomeController.cs b/Watcher/Controllers/HomeController.cs index 1cd917e..07cdd11 100644 --- a/Watcher/Controllers/HomeController.cs +++ b/Watcher/Controllers/HomeController.cs @@ -41,7 +41,6 @@ namespace Watcher.Controllers .Where(u => u.Username == preferredUserName) .FirstOrDefaultAsync(); - Console.WriteLine("Index" + _DashboardStore.NetworkStatus); var viewModel = new DashboardViewModel { ActiveServers = await _context.Servers.CountAsync(s => s.IsOnline), @@ -75,8 +74,6 @@ namespace Watcher.Controllers var now = DateTime.UtcNow; - Console.WriteLine("DashboardStats" + _DashboardStore.NetworkStatus); - var model = new DashboardViewModel { ActiveServers = await _context.Servers.CountAsync(s => s.IsOnline),