orbiter/api/notfound.go
Gianluca Arbezzano 3cea6bb8ba Add basic 404 page
2017-03-26 22:33:26 +01:00

15 lines
244 B
Go

package api
import (
"net/http"
"github.com/Sirupsen/logrus"
)
type NotFound struct{}
func (n NotFound) ServeHTTP(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(404)
logrus.Infof("%s %s not found.", r.Method, r.URL.String())
}