Hi everyone, I started using Sentry and it is great, but I can not get the user context works, this how Im implementing it:
Raven.setUserContext({
id: user.id});
Raven.setUserContext({
username: user.username
});
and also tried
Raven.setUserContext({
id: user.id,
username: user.username
});
Am I missing something? Both values exist and I can see them on sentry as tag values by doing this:
Raven.setTagsContext({ userName: user.username });
Raven.setTagsContext({ userID: user.id });
I only get Unknown User
any help will be great.
thanks