Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crates/compilers/src/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,7 @@ impl<'a, T: ArtifactOutput, C: Compiler> ArtifactsCacheInner<'a, T, C> {
}

/// Returns whether we are missing artifacts for the given file and version.
#[instrument(level = "trace", skip(self))]
fn is_missing_artifacts(&self, file: &Path, version: &Version) -> bool {
let Some(entry) = self.cache.entry(file) else {
trace!("missing cache entry");
Expand All @@ -705,7 +706,7 @@ impl<'a, T: ArtifactOutput, C: Compiler> ArtifactsCacheInner<'a, T, C> {
}

if !entry.contains_version(version) {
trace!("missing linked artifacts",);
trace!("missing linked artifacts");
return true;
}

Expand Down