Skip to content

Commit

Permalink
Merge pull request #2360 from Danthar/dev
Browse files Browse the repository at this point in the history
Fix for #2342
  • Loading branch information
Marc Piechura authored Nov 1, 2016
2 parents 7b3ba05 + abeeb22 commit 0f97ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Akka.Persistence/PersistentView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ protected virtual void OnReplayError(Exception cause)
{
if (_log.IsErrorEnabled)
_log.Error(cause, "Persistence view failure when replaying events for persistenceId [{0}]. " +
"Last known sequence number [{}]", PersistenceId, LastSequenceNr);
"Last known sequence number [{1}]", PersistenceId, LastSequenceNr);
}

private void ChangeState(ViewState state)
Expand Down

0 comments on commit 0f97ba0

Please sign in to comment.