moved API request log to debug level

This commit is contained in:
yusing
2024-11-11 01:32:55 +08:00
parent ba26e6a5d6
commit d936e24692
2 changed files with 2 additions and 1 deletions

View File

@@ -54,7 +54,7 @@ func checkHost(f http.HandlerFunc) http.HandlerFunc {
http.Error(w, "forbidden", http.StatusForbidden)
return
}
LogInfo(r).Interface("headers", r.Header).Msg("API request")
LogDebug(r).Interface("headers", r.Header).Msg("API request")
f(w, r)
}
}