mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 06:13:35 +01:00
* . * , * PUBLISH_TESTRESULTS * fix logging * fix compile error * codefactor fix * Debug - Sonar + other things in csproj
44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
using System;
|
|
using log4net;
|
|
using Newtonsoft.Json;
|
|
using WireMock.Admin.Requests;
|
|
using WireMock.Logging;
|
|
|
|
namespace WireMock.Net.StandAlone.NETCoreApp
|
|
{
|
|
internal class WireMockLog4NetLogger : IWireMockLogger
|
|
{
|
|
private static readonly ILog Log = LogManager.GetLogger(typeof(Program));
|
|
|
|
public void Debug(string formatString, params object[] args)
|
|
{
|
|
Log.DebugFormat(formatString, args);
|
|
}
|
|
|
|
public void Info(string formatString, params object[] args)
|
|
{
|
|
Log.InfoFormat(formatString, args);
|
|
}
|
|
|
|
public void Warn(string formatString, params object[] args)
|
|
{
|
|
Log.WarnFormat(formatString, args);
|
|
}
|
|
|
|
public void Error(string formatString, params object[] args)
|
|
{
|
|
Log.ErrorFormat(formatString, args);
|
|
}
|
|
|
|
public void Error(string message, Exception exception)
|
|
{
|
|
Log.Error(message, exception);
|
|
}
|
|
|
|
public void DebugRequestResponse(LogEntryModel logEntryModel, bool isAdminRequest)
|
|
{
|
|
string message = JsonConvert.SerializeObject(logEntryModel, Formatting.Indented);
|
|
Log.DebugFormat("Admin[{0}] {1}", isAdminRequest, message);
|
|
}
|
|
}
|
|
} |