mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 04:23:46 +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
@@ -165,7 +165,7 @@ function failed_listing_users() {
|
||||
loading.destroy_indicator($("#subs_page_loading_indicator"));
|
||||
const status = get_status_field();
|
||||
const user_id = people.my_current_user_id();
|
||||
blueslip.error(`Error while listing users for user_id ${user_id}`, {status});
|
||||
blueslip.error("Error while listing users for user_id", {user_id, status});
|
||||
}
|
||||
|
||||
function populate_users() {
|
||||
|
||||
Reference in New Issue
Block a user