···84848585 // has the repo already been downloaded?
8686 if rc.sismember(DL_DUP_KEY, &did).await.unwrap_or_default() {
8787- tracing::warn!("skipping duplicate repo {did}");
8787+ tracing::info!("skipping duplicate repo {did}");
8888 continue;
8989 }
9090···9292 match db::actor_get_statuses(&mut conn, &did).await {
9393 Ok(Some((_, state))) => {
9494 if state == ActorSyncState::Synced || state == ActorSyncState::Processing {
9595- tracing::warn!("skipping duplicate repo {did}");
9595+ tracing::info!("skipping duplicate repo {did}");
9696 continue;
9797 }
9898 }
···206206 let _ = rc.zadd(BF_REM_KEY, &pds, rem).await;
207207 let _ = rc.zadd(BF_RESET_KEY, &pds, reset).await;
208208 }
209209- Ok(_) => tracing::warn!(pds, "got response with no ratelimit headers."),
209209+ Ok(_) => tracing::debug!(pds, "got response with no ratelimit headers."),
210210 Err(e) => {
211211 tracing::error!(pds, did, "failed to download repo: {e}");
212212 continue;
+1-4
consumer/src/backfill/repo.rs
···53535454 match block {
5555 CarEntry::Commit(_) => {
5656- tracing::warn!("got commit entry that was not in root")
5656+ tracing::debug!("got commit entry that was not in root")
5757 }
5858 CarEntry::Record(CarRecordEntry::Known(record)) => {
5959 if let Some(path) = mst_nodes.remove(&cid) {
···169169 }
170170 RecordTypes::AppBskyFeedThreadgate(record) => {
171171 if !at_uri_is_by(&record.post, did) {
172172- tracing::warn!("tried to create a threadgate on a post we don't control!");
173172 return Ok(());
174173 }
175174···194193 RecordTypes::AppBskyGraphListItem(rec) => {
195194 let split_aturi = rec.list.rsplitn(4, '/').collect::<Vec<_>>();
196195 if did != split_aturi[2] {
197197- // it's also probably a bad idea to log *all* the attempts to do this...
198198- tracing::warn!("tried to create a listitem on a list we don't control!");
199196 return Ok(());
200197 }
201198
-4
consumer/src/indexer/mod.rs
···640640 }
641641 RecordTypes::AppBskyFeedPostgate(record) => {
642642 if !at_uri_is_by(&record.post, repo) {
643643- tracing::warn!("tried to create a postgate on a post we don't control!");
644643 return Ok(());
645644 }
646645···670669 }
671670 RecordTypes::AppBskyFeedThreadgate(record) => {
672671 if !at_uri_is_by(&record.post, repo) {
673673- tracing::warn!("tried to create a threadgate on a post we don't control!");
674672 return Ok(());
675673 }
676674···710708 }
711709 RecordTypes::AppBskyGraphListItem(record) => {
712710 if !at_uri_is_by(&record.list, repo) {
713713- // it's also probably a bad idea to log *all* the attempts to do this...
714714- tracing::warn!("tried to create a listitem on a list we don't control!");
715711 return Ok(());
716712 }
717713