From cd1c8c4e9153b8fd4f606972d1a0c354f758b8a7 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Thu, 1 Jan 2026 13:35:49 +0100 Subject: [PATCH] style: log S3 destination path when archive is uploaded instead of local path (#4) Reviewed-on: https://codeberg.org/vlw/3rd/pulls/4 --- src/Upload/Aws.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Upload/Aws.py b/src/Upload/Aws.py index f56997c..34e7666 100644 --- a/src/Upload/Aws.py +++ b/src/Upload/Aws.py @@ -26,6 +26,7 @@ class Aws(): self.__stdout.log(f"Starting upload of archive for: {self.archive.item.abspath_target}") self.__stdout.debug(f"Archive object: {self.archive}") + self.__stdout.info(f"Uploading to: {self.archive.item.abspath_destination}") args = [ "aws", @@ -53,4 +54,4 @@ class Aws(): cmd.cleanup() self.archive.cleanup() - self.__stdout.ok(f"Archive uploaded: {self.archive.item.abspath_target}") + self.__stdout.ok(f"Archive uploaded to: {self.archive.item.abspath_destination}")