mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
change admin 404 error log level to debug (#1342)
This commit is contained in:
parent
9756c4c4d4
commit
26041a0dc3
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ func ServeAdmin(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
f, err := pkger.Open(path)
|
f, err := pkger.Open(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnln(err, path)
|
log.Debugln(err, path)
|
||||||
errorHandler(w, http.StatusNotFound)
|
errorHandler(w, http.StatusNotFound)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue