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 fa98d147be - Show all commits

View File

@@ -369,6 +369,19 @@ pub fn run_orphan_gc(
} }
} }
state.prev_tick_all_online = false; state.prev_tick_all_online = false;
if stats.changed() {
info!(
"orphan-gc: marked {} new, revived {} (deferred — at least one library Stale; pending: {})",
stats.newly_marked,
stats.revived,
state.pending.len()
);
} else {
debug!(
"orphan-gc: stale library, no changes (pending: {})",
state.pending.len()
);
}
return stats; return stats;
} }