From 95b2d6f6031a658c47265c28698c77540827ce95 Mon Sep 17 00:00:00 2001 From: Cadey Date: Fri, 23 Mar 2018 19:24:54 -0700 Subject: [PATCH] cmd/sserver: remove http logging --- cmd/sserver/main.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmd/sserver/main.go b/cmd/sserver/main.go index 4ca9867..6f8de53 100644 --- a/cmd/sserver/main.go +++ b/cmd/sserver/main.go @@ -5,9 +5,7 @@ import ( "net/http" "os" - "github.com/Xe/ln/ex" "github.com/rakyll/statik/fs" - _ "git.xeserv.us/xena/tulpaforce.tk/cmd/sserver/statik" ) @@ -23,5 +21,5 @@ func main() { } log.Printf("Listening on http://127.0.0.1:%s", p) - log.Fatal(http.ListenAndServe(":"+p, ex.HTTPLog(http.FileServer(sfs)))) + log.Fatal(http.ListenAndServe(":"+p, http.FileServer(sfs))) }