Hi there,
I have a piece a code that does this:
withScope(scope => {
scope.setExtra("request", {
path,
method,
body: stringifiedBody,
headers: mergedHeaders,
});
scope.setExtra("response", { ...resBody, status: res.status });
captureMessage(`${method} ${path}: HTTP ${res.status} error`, {
level: "error",
});
This, however, makes it so that in the show this is shown:
That “String” part is specially weird, I would expect the actual string title of the message being shown (which does in the title), or nothing.
Thought on why this is happening?