5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-02-02 09:47:16 +03:00

backup: improve skipped download error message

context always helps when parsing output..

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2023-07-19 11:06:31 +02:00
parent 03e71cc8be
commit e61aa41076

View File

@ -289,7 +289,7 @@ impl BackupWriter {
.iter() .iter()
.any(|file| file.filename == archive_name) .any(|file| file.filename == archive_name)
{ {
log::info!("There is no index with the name {archive_name}"); log::info!("Previous manifest does not contain an archive called '{archive_name}', skipping download..");
} else { } else {
// try, but ignore errors // try, but ignore errors
match ArchiveType::from_path(archive_name) { match ArchiveType::from_path(archive_name) {