♻️ Replaced debug with exception in logger.

This commit is contained in:
Nikhil Badyal
2022-08-13 18:04:46 +05:30
parent fa27621921
commit d393c76534
+1 -1
View File
@@ -301,7 +301,7 @@ def main() -> None:
logger.debug(f"Download completed {app}") logger.debug(f"Download completed {app}")
arg_parser.run(app=app) arg_parser.run(app=app)
except Exception as e: 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) sys.exit(-1)