Commit b6d7d465213e99b994b318d2af08d373352655d2
Exists in
master
and in
1 other branch
Merge pull request #877 from espen/patch-2
no need for wrapper gem, airbrake can easily be configured to send info ...
Showing
1 changed file
with
15 additions
and
0 deletions
Show diff stats
README.md
... | ... | @@ -203,6 +203,21 @@ This will ensure that your application stays up to date with any schema changes. |
203 | 203 | another issue tracker integration, you may need to maintain it yourself. See |
204 | 204 | (issue trackers)[#issue-trackers] |
205 | 205 | |
206 | +## User information in error reports | |
207 | + | |
208 | +Errbit can now display information about the user who experienced an error. | |
209 | +This gives you the ability to ask the user for more information, | |
210 | +and let them know when you've fixed the bug. | |
211 | + | |
212 | +The Airbrake gem will look for ```current_user``` or ```current_member```. By defailt it will only send the ```id``` of the user, to specify other attributes you can set ```config.user_attributes```. See [the Airbrake wiki for more information](https://github.com/airbrake/airbrake/wiki/Sending-current-user-information). | |
213 | + | |
214 | +If user information is received with an error report, | |
215 | +it will be displayed under the *User Details* tab: | |
216 | + | |
217 | + | |
218 | + | |
219 | +This tab will be hidden if no user information is available. | |
220 | + | |
206 | 221 | Javascript error notifications |
207 | 222 | -------------------------------------- |
208 | 223 | ... | ... |