diff --git a/src/common/Elsa.Mediator/HostedServices/BackgroundCommandSenderHostedService.cs b/src/common/Elsa.Mediator/HostedServices/BackgroundCommandSenderHostedService.cs index 8b4a0db0c..e395f3484 100644 --- a/src/common/Elsa.Mediator/HostedServices/BackgroundCommandSenderHostedService.cs +++ b/src/common/Elsa.Mediator/HostedServices/BackgroundCommandSenderHostedService.cs @@ -67,7 +67,7 @@ public class BackgroundCommandSenderHostedService : BackgroundService } catch (Exception e) { - _logger.LogError(e, "An unhandled exception occured while processing the queue"); + _logger.LogError(e, "An unhandled exception occurred while processing the queue"); } } } diff --git a/src/common/Elsa.Mediator/HostedServices/BackgroundEventPublisherHostedService.cs b/src/common/Elsa.Mediator/HostedServices/BackgroundEventPublisherHostedService.cs index 67e43ddfb..3a10e8403 100644 --- a/src/common/Elsa.Mediator/HostedServices/BackgroundEventPublisherHostedService.cs +++ b/src/common/Elsa.Mediator/HostedServices/BackgroundEventPublisherHostedService.cs @@ -73,7 +73,7 @@ public class BackgroundEventPublisherHostedService : BackgroundService } catch (Exception e) { - _logger.LogError(e, "An unhandled exception occured while processing the queue"); + _logger.LogError(e, "An unhandled exception occurred while processing the queue"); } } }