Remove debug statements, update PGO profile

This commit is contained in:
Seednode 2023-09-26 16:47:01 -05:00
parent 64e756f6a3
commit 1b84606232
3 changed files with 1 additions and 7 deletions

View File

@ -12,7 +12,7 @@ import (
)
const (
ReleaseVersion string = "0.96.2"
ReleaseVersion string = "0.96.3"
)
var (

View File

@ -165,17 +165,11 @@ func serveRoot(paths []string, regexes *regexes, cache *fileCache, formats *type
strippedRefererUri := strings.TrimPrefix(refererUri, Prefix+mediaPrefix)
fmt.Printf("Includes:\n%v\n", r.URL.Query().Get("include"))
fmt.Printf("Excludes:\n%v\n", r.URL.Query().Get("exclude"))
filters := &filters{
included: splitQueryParams(r.URL.Query().Get("include"), regexes),
excluded: splitQueryParams(r.URL.Query().Get("exclude"), regexes),
}
fmt.Printf("Includes:\n%v\n", filters.included)
fmt.Printf("Excludes:\n%v\n", filters.excluded)
sortOrder := sortOrder(r)
_, refreshInterval := refreshInterval(r)

Binary file not shown.