20 lines
582 B
C#
20 lines
582 B
C#
using AyCode.Core.Enums;
|
|
using AyCode.Core.Loggers;
|
|
using AyCode.Services.Loggers;
|
|
using Microsoft.JSInterop;
|
|
using TIAM.Core.Consts;
|
|
|
|
namespace TIAMWebApp.Shared.Application.Utility;
|
|
|
|
//public interface IBrowserConsoleLogWriter : IAcLogWriterBase
|
|
//{ }
|
|
|
|
//public abstract class LogWriterClient : AcTextLogWriterBase
|
|
//{
|
|
// protected LogWriterClient(IJSRuntime jsRuntime) : base(AppType.Web, LogLevel.Debug)
|
|
// { }
|
|
//}
|
|
|
|
public class BrowserConsoleLogWriter(IJSRuntime jsRuntime) : AcBrowserConsoleLogWriter(jsRuntime, AppType.Web, TiamConstClient.DefaultLogLevelClient)
|
|
{
|
|
} |