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

This commit is contained in:
Meisam 2021-08-22 03:16:27 +02:00 committed by GitHub
parent 9756c4c4d4
commit 26041a0dc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}