mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
93 lines
2.1 KiB
C#
93 lines
2.1 KiB
C#
using System;
|
|
using System.Text;
|
|
using Microsoft.Extensions.Logging;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace BTCPayServer.Tests.Logging
|
|
{
|
|
public interface ILog
|
|
{
|
|
void LogInformation(string msg);
|
|
}
|
|
|
|
public class XUnitLogProvider : ILoggerProvider
|
|
{
|
|
readonly ITestOutputHelper _Helper;
|
|
public XUnitLogProvider(ITestOutputHelper helper)
|
|
{
|
|
_Helper = helper;
|
|
}
|
|
public ILogger CreateLogger(string categoryName)
|
|
{
|
|
return new XUnitLog(_Helper) { Name = categoryName };
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
|
|
}
|
|
}
|
|
public class XUnitLog : ILog, ILogger, IDisposable
|
|
{
|
|
readonly ITestOutputHelper _Helper;
|
|
public XUnitLog(ITestOutputHelper helper)
|
|
{
|
|
_Helper = helper;
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public IDisposable BeginScope<TState>(TState state)
|
|
{
|
|
return this;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
|
|
}
|
|
|
|
public bool IsEnabled(LogLevel logLevel)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
|
|
{
|
|
StringBuilder builder = new StringBuilder();
|
|
builder.Append(formatter(state, exception));
|
|
if (exception != null)
|
|
{
|
|
builder.AppendLine();
|
|
builder.Append(exception.ToString());
|
|
}
|
|
LogInformation(builder.ToString());
|
|
}
|
|
|
|
public void LogInformation(string msg)
|
|
{
|
|
if (msg != null)
|
|
try
|
|
{
|
|
_Helper.WriteLine(DateTimeOffset.UtcNow + " :" + Name + ": " + msg);
|
|
}
|
|
catch { }
|
|
}
|
|
}
|
|
public class Logs
|
|
{
|
|
public static ILog Tester
|
|
{
|
|
get; set;
|
|
}
|
|
public static XUnitLogProvider LogProvider
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|