Skip to content

Commit 4016c53

Browse files
authored
Log the traceback of an exception during dependency update (#1988)
1 parent 1342906 commit 4016c53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conda_forge_tick/migrators/dep_updates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def migrate(self, recipe_dir: str, attrs: "AttrsTypedDict", **kwargs: Any) -> No
4040
"new_version",
4141
)
4242
except (BaseException, Exception) as e:
43-
logger.warning("Dep update failed! %s", repr(e))
43+
logger.warning("Dep update failed!", exc_info=True)
4444
else:
4545
logger.info("applying deps: %s", update_deps)
4646
apply_dep_update(

0 commit comments

Comments
 (0)