Skip to content

Commit 646cedf

Browse files
committed
WIP: print when storing a with_modules task
1 parent 958238a commit 646cedf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

turbopack/crates/turbo-tasks-backend/src/kv_backing_storage.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,9 @@ impl<T: KeyValueDatabase + Send + Sync + 'static> BackingStorageSealed
359359
for (task_type, task_id) in updates {
360360
let task_id: u32 = *task_id;
361361
serialize_task_type(&task_type, &mut task_type_bytes, task_id)?;
362+
if task_type.get_name().contains("with_modules") {
363+
println!("Stored task type: {task_type:?} => {task_id}");
364+
}
362365

363366
batch
364367
.put(

0 commit comments

Comments
 (0)