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 958238a commit 646cedfCopy full SHA for 646cedf
turbopack/crates/turbo-tasks-backend/src/kv_backing_storage.rs
@@ -359,6 +359,9 @@ impl<T: KeyValueDatabase + Send + Sync + 'static> BackingStorageSealed
359
for (task_type, task_id) in updates {
360
let task_id: u32 = *task_id;
361
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
+ }
365
366
batch
367
.put(
0 commit comments