We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34e09ca commit 4112bd3Copy full SHA for 4112bd3
rust/extractor/src/main.rs
@@ -349,8 +349,19 @@ impl<'a> Extractor<'a> {
349
let path = path.join(format!("{hash:0>16x}"));
350
let mut trap = self.traps.create("crates", path.as_path());
351
if trap.path.exists() {
352
+ log::warn!(
353
+ "Skipping trap file: {} for {}",
354
+ trap.path.display(),
355
+ format!("crate:{root_module_file}:{hash}")
356
+ );
357
continue;
358
}
359
360
+ "Writing trap file: {} for {}",
361
362
363
364
+
365
let krate = &crate_graph[krate_id];
366
let element = generated::Crate {
367
id: trap::TrapId::Key(format!("crate:{root_module_file}:{hash}")),
0 commit comments