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,6 +1,5 @@
// Copyright © WireMock.Net
using System.Linq;
using Stef.Validation;
using WireMock.Extensions;
using WireMock.Matchers.Request;
@@ -119,7 +118,7 @@ public class MatchResult
return new MatchDetail
{
Name = Name,
MatcherType = typeof(MatchResult),
MatcherType = typeof(MatchResult).Name,
Score = Score,
Exception = Exception,
MatchDetails = MatchResults?.Select(mr => mr.ToMatchDetail()).ToArray()