Skip to content

Commit

Permalink
updating
Browse files Browse the repository at this point in the history
  • Loading branch information
em0ney committed May 1, 2015
1 parent 5880b1b commit 1dfaf94
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# thesaucecode:rollbar
# saucecode:rollbar

Kickass [Rollbar](https://rollbar.com/) integration for Meteor projects.

###Installation

1. Run `meteor add thesaucecode:rollbar`
1. Run `meteor add saucecode:rollbar`
2. Set `'ROLLBAR_SERVER_ACCESS_TOKEN'`, `'ROLLBAR_CLIENT_ACCESS_TOKEN'` and optionally, the `'ROLLBAR_ENVIRONMENT'`environment variables with your [client and server access tokens for rollbar](https://rollbar.com/)
3. Run meteor

E.g.

```bash
$ meteor add thesaucecode:rollbar
$ meteor add saucecode:rollbar
$ ROLLBAR_SERVER_ACCESS_TOKEN=acefaketoken1 ROLLBAR_CLIENT_ACCESS_TOKEN=acefaketoken2imsocreative ROLLBAR_ENVIRONMENT=development meteor
```

Expand Down
4 changes: 2 additions & 2 deletions lib/server/rollbar-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ throwError = function(message) {
custom: exceptionDetails
}, {}, function(err) {
if (err) {
console.log("thesaucecode:rollbar: failed to throw error to rollbar.");
console.log("saucecode:rollbar: failed to throw error to rollbar.");
console.log(err);
}
});
Expand All @@ -51,7 +51,7 @@ handleError = function(error) {
custom: payloadData
}, function(err) {
if (err) {
console.log("thesaucecode:rollbar: failed to post error to rollbar.");
console.log("saucecode:rollbar: failed to post error to rollbar.");
console.log(err);
}
});
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package.describe({
name: 'thesaucecode:rollbar',
name: 'saucecode:rollbar',
version: '0.0.1',
summary: 'Rollbar error reporting integrations for Meteor',
documentation: 'README.md'
Expand Down

0 comments on commit 1dfaf94

Please sign in to comment.