diff --git a/backend/api/EventHandlers/InspectionFindingEventHandler.cs b/backend/api/EventHandlers/InspectionFindingEventHandler.cs index ea4d73e61..b1cd0b39e 100644 --- a/backend/api/EventHandlers/InspectionFindingEventHandler.cs +++ b/backend/api/EventHandlers/InspectionFindingEventHandler.cs @@ -18,6 +18,8 @@ public class InspectionFindingEventHandler(IConfiguration configuration, protected override async Task ExecuteAsync(CancellationToken stoppingToken) { + logger.LogInformation("InspectionFinding EventHandler service has started"); + while (!stoppingToken.IsCancellationRequested) { await Task.Delay(_interval, stoppingToken);