2026-08-08 14:07:56 +08:00
|
|
|
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
|
|
|
|
|
);
|