You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"[MXU_STATUS] config data [configs/mxu-*.json > .instances[.id = \"{}\"].tasks[.id = \"{}\"].taskName] should be [string]",
432
+
warn!(
433
+
"[MXU_STATUS] config data [configs/mxu-*.json > .instances[.id = \"{:?}\"].tasks[.id = \"{:?}\"].taskName] should be [non-empty string]",
425
434
id,
426
435
selected_task_id
427
436
);
428
437
returnNone
429
438
};
430
-
Some(vec![name, status.to_string()])
439
+
returnSome(vec![name, status.to_string()])
431
440
}else{
432
-
None
441
+
warn!(
442
+
"[MXU_STATUS] status not found in runtime data [maa_state.instances[\"{:?}\"].task_run_state.statuses] for task in config data [configs/mxu-*.json > .instances[.id = \"{:?}\"].tasks[.id = \"{:?}\"]",
443
+
id,
444
+
id,
445
+
selected_task_id
446
+
);
447
+
returnNone
433
448
}
434
449
}else{
435
-
None
450
+
warn!(
451
+
"[MXU_STATUS] task not found in config data [configs/mxu-*.json > .instances[.id = \"{:?}\"] related to runtime data [maa_state.instances[\"{:?}\"].task_run_state.pending_task_ids]",
0 commit comments