log this.task_id in task.js

This commit is contained in:
Isadora White 2025-02-28 14:42:00 -08:00
parent 42c8062bcf
commit 2bd6b2cb49

View file

@ -118,6 +118,7 @@ export class Task {
this.taskStartTime = Date.now();
this.validator = null;
this.blocked_actions = [];
this.task_id = task_id;
if (task_path && task_id) {
this.data = this.loadTask(task_path, task_id);
this.taskTimeout = this.data.timeout || 300;