Skip to content

Commit

Permalink
add log for pool replenish
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticroentgen committed Jun 6, 2024
1 parent dab13e2 commit 7bdd649
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PoolManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ private async Task StartPoolRunners(List<GithubTargetConfiguration> targetConfig

string arch = Program.Config.Sizes.FirstOrDefault(x => x.Name == pool.Size).Arch;

_logger.LogInformation($"Checking pool {pool.Size} [{arch}]: Existing={existCt} Requested={pool.NumRunners} Missing={missingCt}");

for (int i = 0; i < missingCt; i++)
{
// Queue VM creation
Expand Down

0 comments on commit 7bdd649

Please sign in to comment.