From efff406e22a5ec37823935e13f12c1e4ce8ff635 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Sun, 17 Dec 2023 13:01:19 -0300 Subject: [PATCH] enhancement: improving download benchmark logging --- bauh/view/core/downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/view/core/downloader.py b/bauh/view/core/downloader.py index 612cba49..982d12e4 100644 --- a/bauh/view/core/downloader.py +++ b/bauh/view/core/downloader.py @@ -278,7 +278,7 @@ class AdaptableFileDownloader(FileDownloader): self._rm_bad_file(file_name, output_path, final_cwd, handler, root_password) final_time = time.time() - self.logger.info(f'{file_name} download took {(final_time - start_time) / 60:.2f} minutes') + self.logger.info(f'{file_name} download took {(final_time - start_time) / 60:.4f} minutes') if not success: self.logger.error(f"Could not download '{file_name}'")