refactor: update logger, fix warning message

This commit is contained in:
Jonas Kaninda
2024-10-23 12:06:24 +02:00
parent 448ef4d988
commit 8e20e9595f
2 changed files with 2 additions and 2 deletions

View File

@@ -96,7 +96,7 @@ func restoreFromRemote(db *dbConfig, conf *RestoreConfig) {
}
err = sshStorage.CopyFrom(conf.file)
if err != nil {
utils.Fatal("Error copying backup file: %w", err)
utils.Fatal("Error copying backup file: %s", err)
}
RestoreDatabase(db, conf)
}