chore: 日志压缩包压缩等级提升 (#12622)

chore: support payload compression level optimal -> smallest
This commit is contained in:
BxFS
2025-05-09 07:40:03 -04:00
committed by GitHub
parent 022b39c25a
commit e159598dc8

View File

@@ -119,7 +119,7 @@ public class IssueReportUserControlModel : PropertyChangedBase
foreach (var file in Directory.EnumerateFiles(tempPath, "*", SearchOption.AllDirectories))
{
string entryName = Path.GetRelativePath(tempPath, file);
archive.CreateEntryFromFile(file, entryName, CompressionLevel.Optimal);
archive.CreateEntryFromFile(file, entryName, CompressionLevel.SmallestSize);
}
}