react-native-sentry-gbmsimoes-fork
Version:
gbmsimoes fork - Sentry SDK for react-native
17 lines (11 loc) • 324 B
text/typescript
import Sentry, {SentryLog, SentrySeverity} from '../lib/Sentry';
Sentry.config(null).install();
var options = {
logLevel: SentryLog.Verbose
};
Sentry.config('https://public@sentry.io/1', options).install();
Sentry.captureMessage("test");
Sentry.clearContext();
Sentry.captureBreadcrumb({
message: 'Message'
});