Browse Source

change admin 404 error log level to debug (#1342)

pull/1346/head
Meisam 4 years ago committed by GitHub
parent
commit
26041a0dc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      controllers/admin/index.go

2
controllers/admin/index.go

@ -26,7 +26,7 @@ func ServeAdmin(w http.ResponseWriter, r *http.Request) { @@ -26,7 +26,7 @@ func ServeAdmin(w http.ResponseWriter, r *http.Request) {
f, err := pkger.Open(path)
if err != nil {
log.Warnln(err, path)
log.Debugln(err, path)
errorHandler(w, http.StatusNotFound)
return
}

Loading…
Cancel
Save