Fix spelling in hosted service log messages (#6654)

This commit is contained in:
Sipke Schoorstra 2025-05-20 11:52:05 +02:00 committed by GitHub
parent 25e36c3467
commit 85ff0d7abc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -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");
}
}
}

View file

@ -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");
}
}
}