Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Haik committed Mar 23, 2024
1 parent 9869013 commit 019317f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public async Task<TResponse> Handle(TRequest request, RequestHandlerDelegate<TRe
IList<PropertyInfo> props = new List<PropertyInfo>(myType.GetProperties());
foreach (PropertyInfo prop in props)
{
object? propValue = prop?.GetValue(request, null);
logger.LogInformation("Property {Property} : {@Value}", prop?.Name, propValue);
object? propValue = prop.GetValue(request, null);
logger.LogInformation("Property {Property} : {@Value}", prop.Name, propValue);
}
}
}
Expand Down

0 comments on commit 019317f

Please sign in to comment.