Skip to content

Commit

Permalink
Mention that failures are expected
Browse files Browse the repository at this point in the history
  • Loading branch information
xPaw committed May 21, 2024
1 parent 8c4e4b9 commit c98c9d5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Requester.cs
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,14 @@ async Task CheckFinishedDepotKeyRequests()

if (depotKeysRequested > 0)
{
AnsiConsole.MarkupLine($"Depot keys requested: [green]{depotKeysRequested}[/] - Failed: [red]{depotKeysFailed}[/]");
if (depotKeysFailed > 0)
{
AnsiConsole.MarkupLine($"Depot keys requested: [green]{depotKeysRequested}[/] - Failed: [red]{depotKeysFailed}[/] [gray](failures are expected)[/]");
}
else
{
AnsiConsole.MarkupLine($"Depot keys requested: [green]{depotKeysRequested}[/]");
}
}
}

Expand Down

0 comments on commit c98c9d5

Please sign in to comment.