Browse Source
Fix log message formatting in InboxProcessor
pull/23563/head
maliming
1 year ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.EventBus/Volo/Abp/EventBus/Distributed/InboxProcessor.cs
|
|
|
@ -144,7 +144,7 @@ public class InboxProcessor : IInboxProcessor, ITransientDependency |
|
|
|
|
|
|
|
Logger.LogInformation($"Event with id = {waitingEvent.Id:N} will retry later. " + |
|
|
|
$"Current retry count: {waitingEvent.RetryCount}, " + |
|
|
|
$"Next retry time: {GetNextRetryTime(waitingEvent.RetryCount)}" + |
|
|
|
$"Next retry time: {GetNextRetryTime(waitingEvent.RetryCount)}, " + |
|
|
|
$"Max retry count: {EventBusBoxesOptions.InboxProcessorMaxRetryCount}."); |
|
|
|
|
|
|
|
await Inbox.RetryLaterAsync(waitingEvent.Id, ++waitingEvent.RetryCount, GetNextRetryTime(waitingEvent.RetryCount)); |
|
|
|
|