Files
MRCC/launcher/PCL-CE/PCL.Core/Logging/LoggerConfiguration.cs
T

11 lines
272 B
C#
Raw Normal View History

namespace PCL.Core.Logging;
public record LoggerConfiguration(
string StoreFolder,
long MaxFileSize = 32 * 1024 * 1024,
string? FileNameFormat = null,
bool AutoDeleteOldFile = true,
int MaxKeepOldFile = 16,
LogLevel MinLogLevel = LogLevel.Info
);