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

This commit is contained in:
Meisam
2021-08-21 18:16:27 -07:00
committed by GitHub
parent 9756c4c4d4
commit 26041a0dc3
+1 -1
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
}