Lasa is a stateless proxy that generates a RSS or an Atom feed from a Standard.site publication. lasa.anhgelus.world
rss atom atprotocol standard-site atproto
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(internal): logging 429 as warning

+1 -1
+1 -1
cmd/internal/mux.go
··· 87 87 level := slog.LevelDebug 88 88 if (w.Code == http.StatusNotFound && logNotFound) || 89 89 (w.Code == http.StatusBadRequest && logBadRequest) || 90 - (w.Code != http.StatusNotFound && w.Code != http.StatusBadRequest) { 90 + (w.Code != http.StatusNotFound && w.Code != http.StatusBadRequest && w.Code != http.StatusTooManyRequests) { 91 91 level = slog.LevelWarn 92 92 } 93 93 log.Log(context.Background(), level, "invalid request")