(w http.ResponseWriter, _ *http.Request)
| 725 | } |
| 726 | |
| 727 | func (*service) getSystemDebug(w http.ResponseWriter, _ *http.Request) { |
| 728 | sendJSON(w, map[string]any{ |
| 729 | "packages": slogutil.PackageDescrs(), |
| 730 | "levels": slogutil.PackageLevels(), |
| 731 | }) |
| 732 | } |
| 733 | |
| 734 | func (*service) postSystemDebug(w http.ResponseWriter, r *http.Request) { |
| 735 | var levelRequest map[string]slog.Level |
nothing calls this directly
no test coverage detected