Browse Source

Fix typo

pull/1016/head
Joni 5 years ago
parent
commit
9159df343e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Services/Ordering/Ordering.API/Application/IntegrationEvents/OrderingIntegrationEventService.cs

+ 2
- 2
src/Services/Ordering/Ordering.API/Application/IntegrationEvents/OrderingIntegrationEventService.cs View File

@ -41,9 +41,9 @@ namespace Ordering.API.Application.IntegrationEvents
public async Task PublishEventsThroughEventBusAsync() public async Task PublishEventsThroughEventBusAsync()
{ {
var pendindLogEvents = await _eventLogService.RetrieveEventLogsPendingToPublishAsync();
var pendingLogEvents = await _eventLogService.RetrieveEventLogsPendingToPublishAsync();
foreach (var logEvt in pendindLogEvents)
foreach (var logEvt in pendingLogEvents)
{ {
_logger.LogInformation("----- Publishing integration event: {IntegrationEventId} from {AppName} - ({@IntegrationEvent})", logEvt.EventId, Program.AppName, logEvt.IntegrationEvent); _logger.LogInformation("----- Publishing integration event: {IntegrationEventId} from {AppName} - ({@IntegrationEvent})", logEvt.EventId, Program.AppName, logEvt.IntegrationEvent);


Loading…
Cancel
Save