From 11b989b50c2ce1b8ac40fb4426af845dbf6c5a4e Mon Sep 17 00:00:00 2001 From: MrMelon54 Date: Sun, 29 Oct 2023 12:56:53 +0000 Subject: [PATCH] Remove extra logging line --- router/manager.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/router/manager.go b/router/manager.go index 77b2c11..24bd4e8 100644 --- a/router/manager.go +++ b/router/manager.go @@ -3,7 +3,6 @@ package router import ( "database/sql" _ "embed" - "fmt" "github.com/1f349/violet/proxy" "github.com/1f349/violet/target" "github.com/MrMelon54/rescheduler" @@ -169,8 +168,6 @@ func (m *Manager) GetAllRoutes(hosts []string) ([]target.RouteWithActive, error) } } - fmt.Println(len(s)) - return s, nil }