diff --git a/pyfpga/project.py b/pyfpga/project.py index d7758ad0..7e381620 100644 --- a/pyfpga/project.py +++ b/pyfpga/project.py @@ -13,7 +13,6 @@ import os import subprocess -from datetime import datetime from pathlib import Path from shutil import which from time import time @@ -277,7 +276,9 @@ def _create_file(self, basename, extension, context): file.write(content) def _run(self, command): - self.logger.info('Running the underlying tool (%s)', datetime.now()) + self.logger.info( + 'Running the underlying tool (%s)', self.tool['make-app'] + ) run_error = 0 old_dir = Path.cwd() new_dir = Path(self.odir) @@ -299,7 +300,6 @@ def _run(self, command): finally: os.chdir(old_dir) end = time() - self.logger.info('Done (%s)', datetime.now()) elapsed = end - start self.logger.info( 'Elapsed time %dh %dm %.2fs',