We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 646ac8d commit 8e5edf0Copy full SHA for 8e5edf0
README.md
@@ -36,7 +36,7 @@ client.captureMessage('Hello, world!');
36
You can specify a level in the second optional parameter. Default level is `error`
37
38
39
-**There are 5 logging levels (in order):**
+**Sentry is aware of five different levels:**
40
* debug (the least serious)
41
* info
42
* warning
@@ -46,7 +46,7 @@ You can specify a level in the second optional parameter. Default level is `erro
46
```javascript
47
var raven = require('raven');
48
49
-var client = new raven.Client('{{ SENTRY_DSN }}');
+var client = new raven.Client('{{ SENTRY_DSN }}', {level: 'warning'});
50
51
client.captureMessage("Another message")
52
```
0 commit comments