We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44c1c7a commit 6aa1594Copy full SHA for 6aa1594
src/WireMock.Net/Server/WireMockServer.LogEntries.cs
@@ -33,9 +33,10 @@ public IReadOnlyList<ILogEntry> FindLogEntries(params IRequestMatcher[] matchers
33
{
34
Guard.NotNull(matchers);
35
36
- var results = new Dictionary<LogEntry, RequestMatchResult>();
+ var results = new Dictionary<ILogEntry, RequestMatchResult>();
37
38
- foreach (var log in _options.LogEntries.ToArray())
+ var allLogEntries = LogEntries;
39
+ foreach (var log in allLogEntries)
40
41
var requestMatchResult = new RequestMatchResult();
42
foreach (var matcher in matchers)
0 commit comments