at protocol indexer with flexible filtering, xrpc queries, and a cursor-backed event stream, built on fjall
at-protocol atproto indexer rust fjall

[backfill,ingest] dont write that many logs

ptr.pet 9eb1bd6b f952c5a3

verified
+2 -2
+1 -1
src/backfill/mod.rs
··· 176 176 http: &reqwest::Client, 177 177 did: &Did<'static>, 178 178 ) -> Result<RepoState> { 179 - info!("backfilling {}", did); 179 + debug!("backfilling {}", did); 180 180 181 181 let db = &app_state.db; 182 182 let did_key = keys::repo_key(did);
+1 -1
src/ingest/mod.rs
··· 191 191 192 192 match status { 193 193 RepoStatus::New => { 194 - info!("new repo detected: {}", did); 194 + debug!("new repo detected: {}", did); 195 195 // 1. save state as backfilling 196 196 let mut new_state = RepoState::new(commit.repo.clone().into_static()); 197 197 new_state.status = RepoStatus::Backfilling;