From 305192dcb647633ecf61c7d7771f9773192d1ec2 Mon Sep 17 00:00:00 2001 From: jkbmrz Date: Mon, 18 Mar 2024 13:46:09 +0100 Subject: [PATCH] add a logging statement at the end of archiving --- luxonis_train/core/archiver.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/luxonis_train/core/archiver.py b/luxonis_train/core/archiver.py index 6f9366e9..aa32feba 100644 --- a/luxonis_train/core/archiver.py +++ b/luxonis_train/core/archiver.py @@ -115,6 +115,8 @@ def archive(self, executable_path: str): executables_paths=[executable_path], # TODO: what if more executables? ).make_archive() + logger.info(f"archive saved to {self.archive_path}") + if self.cfg.archiver.upload_url is not None: self._upload()