very fast at protocol indexer with flexible filtering, xrpc queries, cursor-backed event stream, and more, built on fjall
rust fjall at-protocol atproto indexer
60
fork

Configure Feed

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

[db] print pruned events log at info level

dawn 995c1c8b 690c80dd

+5 -1
+5 -1
src/db/ephemeral.rs
··· 117 117 118 118 batch.commit().into_diagnostic()?; 119 119 120 - debug!(pruned, "pruned old events"); 120 + if pruned > 0 { 121 + info!(pruned, "pruned old events"); 122 + } else { 123 + debug!("no events were pruned"); 124 + } 121 125 122 126 Ok(()) 123 127 }