Fix: logx with Compress auto delete old logs (#3329)

Co-authored-by: haoran.ren <haoran.ren@mihoyo.com>
This commit is contained in:
Ron_haur
2023-06-08 19:08:04 +08:00
committed by GitHub
parent fd84b27bdc
commit da81d8f774

View File

@@ -426,7 +426,6 @@ func gzipFile(file string) error {
if err != nil {
return err
}
defer in.Close()
out, err := os.Create(fmt.Sprintf("%s%s", file, gzipExt))
if err != nil {
@@ -441,5 +440,7 @@ func gzipFile(file string) error {
return err
}
in.Close()
return os.Remove(file)
}