Skip to content

Commit

Permalink
Merge pull request #52 from luis-fss/log-message-patch
Browse files Browse the repository at this point in the history
Correction in log parameter
  • Loading branch information
JudahGabriel authored Jan 18, 2024
2 parents 04bd919 + ca9e4ec commit 2acdd31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RavenDB.Identity/UserStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public virtual async Task<IdentityResult> CreateAsync(TUser user, CancellationTo
{
// The compare/exchange email reservation is cluster-wide, outside of the session scope.
// We need to manually roll it back.
logger.LogError("Error during user creation", createUserError);
logger.LogError(createUserError, "Error during user creation");
DbSession.Delete(user); // It's possible user is already saved to the database. If so, delete him.
try
{
Expand Down

0 comments on commit 2acdd31

Please sign in to comment.