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
thrownewException("Tool does not support this game");
45
49
46
-
awaitloadout.Apply();
50
+
_logger.LogInformation("Applying loadout {LoadoutId} to {GameName} {GameVersion}",loadout.LoadoutId,loadout.Installation.Game.Name,loadout.Installation.Version);
51
+
try
52
+
{
53
+
awaitloadout.Apply();
54
+
}
55
+
catch(NeedsIngestException)
56
+
{
57
+
_logger.LogInformation("Ingesting loadout {LoadoutId} from {GameName} {GameVersion}",loadout.LoadoutId,loadout.Installation.Game.Name,loadout.Installation.Version);
58
+
awaitloadout.Ingest();
59
+
_logger.LogInformation("Applying loadout {LoadoutId} to {GameName} {GameVersion}",loadout.LoadoutId,loadout.Installation.Game.Name,loadout.Installation.Version);
60
+
awaitloadout.Apply();
61
+
}
47
62
63
+
_logger.LogInformation("Running tool {ToolName} for loadout {LoadoutId} on {GameName} {GameVersion}",tool.Name,loadout.LoadoutId,loadout.Installation.Game.Name,loadout.Installation.Version);
48
64
awaittool.Execute(loadout,token);
49
65
66
+
_logger.LogInformation("Ingesting loadout {LoadoutId} from {GameName} {GameVersion}",loadout.LoadoutId,loadout.Installation.Game.Name,loadout.Installation.Version);
0 commit comments