Remove extra logging line

This commit is contained in:
Melon 2023-10-29 12:56:53 +00:00
parent 30bcea40b8
commit 11b989b50c
Signed by: melon
GPG Key ID: 6C9D970C50D26A25

View File

@ -3,7 +3,6 @@ package router
import ( import (
"database/sql" "database/sql"
_ "embed" _ "embed"
"fmt"
"github.com/1f349/violet/proxy" "github.com/1f349/violet/proxy"
"github.com/1f349/violet/target" "github.com/1f349/violet/target"
"github.com/MrMelon54/rescheduler" "github.com/MrMelon54/rescheduler"
@ -169,8 +168,6 @@ func (m *Manager) GetAllRoutes(hosts []string) ([]target.RouteWithActive, error)
} }
} }
fmt.Println(len(s))
return s, nil return s, nil
} }