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;
using System.Text.Json;
using Microsoft.Extensions.Logging;
using WireMock.Admin.Requests;
@@ -11,11 +10,6 @@ namespace WireMock.Net;
public class WireMockLogger : IWireMockLogger
{
private readonly JsonSerializerOptions _options = new()
{
WriteIndented = true
};
private readonly ILogger _logger;
public WireMockLogger(ILogger logger)