Remove extraneous tracing

This commit is contained in:
Mike Dilger 2023-01-26 13:22:22 +13:00
parent 887890c874
commit f1a28a0a01
2 changed files with 0 additions and 2 deletions

View File

@ -410,7 +410,6 @@ impl DbPersonRelay {
if let Some(when) = dbpr.last_suggested_bytag {
score += scorefn(when, 60 * 60 * 24 * 2, 1);
}
tracing::debug!("person relay score {} = {}", &dbpr.relay, score);
output.push((Url::new(&dbpr.relay), score));
}

View File

@ -210,7 +210,6 @@ impl Overlord {
.collect();
person_relay_scores.extend(best_relays);
}
tracing::debug!("{:?}", person_relay_scores);
let (num_relays_per_person, max_relays) = {
let settings = GLOBALS.settings.read().await;