Skip to content

Commit 1a7d6cb

Browse files
committed
feat: change log level from Debug to Information for pending jobs
Signed-off-by: Christopher Thomsen <christhomsen82@gmail.com>
1 parent 9dddf54 commit 1a7d6cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OrchestratorWorker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ private async Task ProcessJobsAsync(CancellationToken stoppingToken)
103103
if (pendingJobs.Any())
104104
{
105105
var customerInfo = string.IsNullOrEmpty(_customerName) ? "all customers" : $"customer '{_customerName}'";
106-
_logger.LogDebug("Found {Count} pending jobs for {Customer}", pendingJobs.Count, customerInfo);
106+
_logger.LogInformation("Found {Count} pending jobs for {Customer}", pendingJobs.Count, customerInfo);
107107
}
108108

109109
foreach (var job in pendingJobs)

0 commit comments

Comments
 (0)