Skip to content

Commit

Permalink
Fix logging error in ActorContext.HandleContinuation (#1463)
Browse files Browse the repository at this point in the history
  • Loading branch information
DenizPiri authored Feb 14, 2022
1 parent 0db1496 commit 61906f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Proto.Actor/Context/ActorContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ private async ValueTask HandleContinuation(Continuation cont)
{
if (Logger.IsEnabled(LogLevel.Warning))
Logger.LogWarning(
"{Self} Dropping Continuation (ReenterAfter) of {Message} in {Pid}",
"{Self} Dropping Continuation (ReenterAfter) of {Message}",
Self,
MessageEnvelope.UnwrapMessage(cont.Message));
}
Expand Down

0 comments on commit 61906f5

Please sign in to comment.