feature/library-handoff-and-gc #69

Merged
cameron merged 4 commits from feature/library-handoff-and-gc into master 2026-05-01 18:27:41 +00:00
Showing only changes of commit d809ddee44 - Show all commits

View File

@@ -371,7 +371,7 @@ pub fn run_orphan_gc(
state.prev_tick_all_online = false;
if stats.changed() {
info!(
"orphan-gc: marked {} new, revived {} (deferred — at least one library Stale; pending: {})",
"orphan-gc: {} new orphan hash(es) marked, {} revived (deferred — at least one library Stale; pending: {})",
stats.newly_marked,
stats.revived,
state.pending.len()
@@ -429,12 +429,13 @@ pub fn run_orphan_gc(
if stats.changed() {
info!(
"orphan-gc: marked {} new, revived {}; deleted {} face_detections / {} tagged_photo / {} photo_insights",
"orphan-gc: {} new orphan hash(es) marked, {} revived; deleted {} face_detections / {} tagged_photo / {} photo_insights row(s) (pending: {})",
stats.newly_marked,
stats.revived,
stats.deleted_face_detections,
stats.deleted_tagged_photo,
stats.deleted_photo_insights,
state.pending.len(),
);
} else {
debug!("orphan-gc: no changes this tick (pending: {})", state.pending.len());