mirror of
https://github.com/zulip/zulip.git
synced 2025-11-12 18:06:44 +00:00
blueslip: Reduce cardinality of blueslip.error() calls.
Particularly when grouping in Sentry, pushing the ids and such into the additional data section helps group like errors together better.
This commit is contained in:
committed by
Tim Abbott
parent
1769f981da
commit
64b277d845
@@ -32,7 +32,7 @@ export function process_submessages(in_opts) {
|
||||
try {
|
||||
return do_process_submessages(in_opts);
|
||||
} catch (error) {
|
||||
blueslip.error("in process_submessages: " + error.message);
|
||||
blueslip.error("Failed to do_process_submessages", undefined, error);
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user