17 lines
431 B
C#
17 lines
431 B
C#
using AyCode.Core.Enums;
|
|
using AyCode.Core.Loggers;
|
|
|
|
namespace Mango.Core.Loggers;
|
|
|
|
public class ConsoleLogWriter : AcConsoleLogWriter
|
|
{
|
|
public ConsoleLogWriter() : this(null)
|
|
{ }
|
|
|
|
public ConsoleLogWriter(string? categoryName = null) : base(categoryName)
|
|
{ }
|
|
|
|
public ConsoleLogWriter(AppType appType, LogLevel logLevel, string? callerClassName = null) : base(appType, logLevel, callerClassName)
|
|
{
|
|
}
|
|
} |