chore: improve log message

This commit is contained in:
2025-03-13 14:26:32 +01:00
parent 528282bbd4
commit 71cf3fae85
4 changed files with 10 additions and 9 deletions

View File

@@ -108,7 +108,7 @@ func sshBackup(db *dbConfig, config *BackupConfig) {
})
// Delete temp
deleteTemp()
utils.Info("Backup successfully completed in %s", duration)
utils.Info("The backup of the %s database has been completed in %s", db.dbName, duration)
}
func remoteRestore(db *dbConfig, conf *RestoreConfig) {
@@ -224,5 +224,5 @@ func ftpBackup(db *dbConfig, config *BackupConfig) {
})
// Delete temp
deleteTemp()
utils.Info("Backup successfully completed in %s", duration)
utils.Info("The backup of the %s database has been completed in %s", db.dbName, duration)
}