Skip to content

Commit

Permalink
Change the failure log inside AllEventPublisher from Debug to Error (
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus authored Apr 8, 2022
1 parent da0f734 commit 37e6331
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ protected bool Replaying( object message )
ReceiveRecoverySuccess(success.HighestSequenceNr);
return true;
case EventReplayFailure failure:
Log.Debug("event replay failed, due to [{0}]", failure.Cause.Message);
Log.Error(failure.Cause, "event replay failed, due to [{0}]", failure.Cause.Message);
Buffer.DeliverBuffer(TotalDemand);
OnErrorThenStop(failure.Cause);
return true;
Expand Down

0 comments on commit 37e6331

Please sign in to comment.