We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4a4a3a commit f874555Copy full SHA for f874555
1 file changed
src/webview/suggestions/views/status.py
@@ -122,6 +122,7 @@ def post(self, request: HttpRequest, suggestion_id: int) -> HttpResponse:
122
suggestion.save()
123
undo_status_target = None # We disable the undo button in case we have published. There is no turning back.
124
except Exception:
125
+ logger.exception("Failed to publish suggestion %d", suggestion_id)
126
return self._handle_error(
127
request, suggestion_context, "Unable to publish this suggestion"
128
)
0 commit comments