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

[backfill] dont log backfill info for every did with info! because its just clutter

ptr.pet f9abfdbb f3035d76

verified
+3 -3
+3 -3
src/backfill/mod.rs
··· 244 244 .ok_or_else(|| miette::miette!("root block missing from CAR"))?; 245 245 246 246 let commit = jacquard_repo::commit::Commit::from_cbor(root_bytes).into_diagnostic()?; 247 - info!("backfilling repo at revision {}", commit.rev); 247 + debug!("backfilling repo at revision {}", commit.rev); 248 248 249 249 // 5. walk mst 250 250 let start = Instant::now(); ··· 384 384 .event_tx 385 385 .send(db.next_event_id.load(Ordering::SeqCst) - 1); 386 386 387 - info!("marked {did} as synced, draining buffer..."); 387 + debug!("marked {did} as synced, draining buffer..."); 388 388 389 389 // 7. drain buffer 390 390 let start = Instant::now(); ··· 428 428 start.elapsed() 429 429 ); 430 430 431 - info!("backfill complete for {did}"); 431 + debug!("backfill complete for {did}"); 432 432 Ok(previous_state) 433 433 } 434 434 }