Skip to content

Commit

Permalink
fix(data-migrate): add error log on exception
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalenic committed Dec 5, 2024
1 parent 2a8f735 commit 796aa44
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ def main():
sys.exit(0)
except Exception as e:
DataMover.send_failure(str(e))
logger.error(e)
sys.exit(1)


Expand Down

0 comments on commit 796aa44

Please sign in to comment.