@@ -4,8 +4,6 @@ import ( | |||
"net/http" | |||
"path" | |||
"strings" | |||
"github.com/Sirupsen/logrus" | |||
) | |||
// Static serves as file server for static assets, | |||
@@ -69,10 +67,6 @@ func Static(dir string) func(http.Handler) http.Handler { | |||
} | |||
http.ServeContent(w, r, filename, stat.ModTime(), file) | |||
var header = w.Header() | |||
for key, values := range header { | |||
logrus.Infof("%s: %v", key, values) | |||
} | |||
}) | |||
} | |||
} |