Skip to content

Commit

Permalink
show replicate TypeFullName on error
Browse files Browse the repository at this point in the history
  • Loading branch information
MansourNazifiAsl committed May 9, 2024
1 parent 653b7a7 commit f5f3a17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>2.1.199</Version>
<Version>2.1.200</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async Task Import(ReplicateDataMessage message)
}
catch (Exception ex)
{
Log.For(this).Error(ex, "Failed to import ReplicateDataMessage " + message.Entity);
Log.For(this).Error(ex, $"Failed to import ReplicateDataMessage {message.Entity}|TypeFullName : {message.TypeFullName}");
throw;
}
}
Expand Down

0 comments on commit f5f3a17

Please sign in to comment.