2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 10:17:17 +08:00

feat: 优化备份信息终端输出

This commit is contained in:
耗子
2024-10-15 03:38:52 +08:00
parent e640a3cedd
commit 8b2c7ea778

View File

@@ -237,7 +237,7 @@ func (r *backupRepo) createWebsite(to string, name string) error {
}
color.Greenln(fmt.Sprintf("|-备份耗时:%s", time.Since(start).String()))
color.Greenln(fmt.Sprintf("|-已备份至文件:%s", backup))
color.Greenln(fmt.Sprintf("|-已备份至文件:%s", filepath.Base(backup)))
return nil
}
@@ -282,7 +282,7 @@ func (r *backupRepo) createMySQL(to string, name string) error {
}
color.Greenln(fmt.Sprintf("|-备份耗时:%s", time.Since(start).String()))
color.Greenln(fmt.Sprintf("|-已备份至文件:%s", backup+".zip"))
color.Greenln(fmt.Sprintf("|-已备份至文件:%s", filepath.Base(backup+".zip")))
return nil
}
@@ -317,7 +317,7 @@ func (r *backupRepo) createPostgres(to string, name string) error {
}
color.Greenln(fmt.Sprintf("|-备份耗时:%s", time.Since(start).String()))
color.Greenln(fmt.Sprintf("|-已备份至文件:%s", backup+".zip"))
color.Greenln(fmt.Sprintf("|-已备份至文件:%s", filepath.Base(backup+".zip")))
return nil
}
@@ -342,7 +342,7 @@ func (r *backupRepo) createPanel(to string) error {
}
color.Greenln(fmt.Sprintf("|-备份耗时:%s", time.Since(start).String()))
color.Greenln(fmt.Sprintf("|-已备份至文件:%s", backup))
color.Greenln(fmt.Sprintf("|-已备份至文件:%s", filepath.Base(backup)))
return nil
}