From d393c76534cebaa5c2c021376b5fb98209a9704f Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Sat, 13 Aug 2022 18:04:46 +0530 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Replaced=20debug=20with=20?= =?UTF-8?q?exception=20in=20logger.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 9ce1f39..4e686ac 100644 --- a/main.py +++ b/main.py @@ -301,7 +301,7 @@ def main() -> None: logger.debug(f"Download completed {app}") arg_parser.run(app=app) except Exception as e: - logger.debug(f"Failed to build {app} because of {e}") + logger.exception(f"Failed to build {app} because of {e}") sys.exit(-1)