Log information about tasks after interruption
authorLiza Carvelli <liza@carvel.li>
Fri, 20 Sep 2024 17:42:49 +0000 (19:42 +0200)
committerLiza Carvelli <liza@carvel.li>
Fri, 20 Sep 2024 17:42:49 +0000 (19:42 +0200)
QuestPaths/7.x - Dawntrail/MSQ/F-Living Memory/4959_Dawntrail.json
Questionable/Controller/MiniTaskController.cs

index 68e4c7bfd2b70c81cd91d1075b29e2ec9c400c0d..f5798feb53cd41828342628baa1a32b19d155c59 100644 (file)
@@ -33,6 +33,7 @@
           },
           "TerritoryId": 1192,
           "InteractionType": "WalkTo",
+          "AetheryteShortcut": "Living Memory - Leynode Mnemo",
           "$": "Leynode Mnemo to Meso Terminal waypoint",
           "SkipConditions": {
             "StepIf": {
index 12eb166088aa4f9788ef4384a5ee310fb316d339..2a570eebb64fa836a4c8755582c00aa574a5d2b2 100644 (file)
@@ -167,5 +167,9 @@ internal abstract class MiniTaskController<T>
         }
         else
             _taskQueue.InterruptWith([new WaitAtEnd.WaitDelay()]);
+
+        _logger.LogInformation("Remaining tasks after interruption:");
+        foreach (ITask task in _taskQueue.RemainingTasks)
+            _logger.LogInformation("- {TaskName}", task);
     }
 }