Hi,
I'm trying to reclassify the log level of some Rollbar events with the transform callback by doing something like this:
transform(payload) {
// ...
if (exception) {
if (exception?.class?.endsWith("ClientError") && exception?.message?.includes("ERR_BAD_RESPONSE")) {
payload.level = "warning"
}
}
// ...
}
This successfully changes the level property, but Rollbar still displays the event using the original log level. Here's a reported event where the level was changed using the above code:

If this is intentional, is there another way to modify the level of incoming events? Otherwise, how can I get around this?