diff --git a/slpkg/utilities.py b/slpkg/utilities.py index 81768d13..ad98031d 100644 --- a/slpkg/utilities.py +++ b/slpkg/utilities.py @@ -164,10 +164,10 @@ class Utilities(Configs): except subprocess.CalledProcessError as error: logger = logging.getLogger(LoggingConfig.date_time) logger.exception( - f'{self.__class__.__name__}' - f'{self.__class__.process.__name__}' + f'{self.__class__.__name__}: ' + f'{self.__class__.process.__name__}: ' + f'{error}' ) - self.errors.raise_error_message(str(error), exit_status=20) except KeyboardInterrupt: raise SystemExit(1)