Log when we start solving a fork (#4684)

Adds a debug log message with the markers.
This commit is contained in:
konsti 2024-07-01 10:46:54 +02:00 committed by GitHub
parent 8f881d4796
commit 049833e037
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -336,6 +336,9 @@ impl<InstalledPackages: InstalledPackagesProvider> ResolverState<InstalledPackag
} }
'FORK: while let Some(mut state) = forked_states.pop() { 'FORK: while let Some(mut state) = forked_states.pop() {
if !state.markers.is_universal() {
debug!("Solving split {}", state.markers);
}
let start = Instant::now(); let start = Instant::now();
loop { loop {
// Run unit propagation. // Run unit propagation.