From b5588034d45ad46642eef6dbd91c4ef5f463a7ff Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 17 Oct 2025 04:06:35 -0500 Subject: keep removing this stuff --- http.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'http.go') diff --git a/http.go b/http.go index 40c5e6f..db54d57 100644 --- a/http.go +++ b/http.go @@ -20,14 +20,12 @@ func cleanURL(url string) string { func okHandler(w http.ResponseWriter, r *http.Request) { var route string route = cleanURL(r.URL.Path) - log.HttpMode(w) - defer log.HttpMode(nil) switch route { case "/releaseList": - footer := me.forge.PrintHumanTable(me.found) + footer := me.found.PrintDefaultTB() log.Info("me.found len:", me.found.Len()) - log.Info("PrintHumanTable() footer:", footer) + log.Info("PrintTable() footer:", footer) return default: log.Info("BAD URL = " + route) -- cgit v1.2.3