-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
expose isSetup
on Raven object
#305
Comments
👍 |
This seems reasonable. Though, I'm mostly curious about the use-case for this. In what scenario do you need/want to check this status? |
For me it was to allow running locally without needing to set the I worked around it with var sentry = null;
if (Ember.ENV.SENTRY_DSN) {
sentry = Raven.config(Ember.ENV.SENTRY_DSN).install();
} and then check and use the |
Should not Raven suppress |
+1 |
@vkovalskiy +1 that does not make any sense to me, too |
I would like to be able to call
Raven.isSetup()
, but currentlyisSetup
is a private function.Is there a reason this is not already possible? If not I will make a PR for it.
The text was updated successfully, but these errors were encountered: