Fix WireMockLogger implementation in dotnet-WireMock (#1431)

This commit is contained in:
Stef Heyenrath
2026-03-13 18:34:47 +01:00
committed by GitHub
parent 0a9f37e857
commit d08ce944b6
5 changed files with 7 additions and 12 deletions

View File

@@ -1,7 +1,5 @@
// Copyright © WireMock.Net
using System.Linq;
namespace WireMock.Matchers.Request;
/// <summary>
@@ -30,7 +28,7 @@ public class RequestMatchResult : IRequestMatchResult
return AddMatchDetail(new MatchDetail
{
Name = matcherType.Name.Replace("RequestMessage", string.Empty),
MatcherType = matcherType,
MatcherType = matcherType.Name,
Score = score,
Exception = exception
});