Merge pull request #57384 from pratheep-bit/fix/fr-corr-001-reorder-item

fix: log exception instead of swallowing in notify_errors
This commit is contained in:
Mihir Kandoi
2026-07-23 12:34:24 +05:30
committed by GitHub

View File

@@ -380,7 +380,7 @@ def notify_errors(exceptions_list):
error_message = f"<div class='small text-muted'>{escape_html(str(exception))}</div><br>"
content += error_message
except Exception:
pass
frappe.log_error(title="Failed to format auto reorder exception", message=frappe.get_traceback())
content += _("Regards,") + "<br>" + _("Administrator")