18 lines
556 B
C#
18 lines
556 B
C#
using AyCode.Core.Enums;
|
|
using AyCode.Core.Loggers;
|
|
using AyCode.Services.Loggers;
|
|
|
|
namespace FruitBank.Common.Loggers
|
|
{
|
|
public class SignaRClientLogItemWriter : AcSignaRClientLogItemWriter
|
|
{
|
|
public SignaRClientLogItemWriter() : this(AppType.Web, LogLevel.Detail, null)
|
|
{
|
|
}
|
|
public SignaRClientLogItemWriter(AppType appType, LogLevel logLevel, string? categoryName = null) : base($"{FruitBankConstClient.BaseUrl}/{FruitBankConstClient.LoggerHubName}", appType, logLevel, categoryName)
|
|
{
|
|
}
|
|
}
|
|
|
|
}
|