Skip to content

Commit ba2ae97

Browse files
committed
chore: removed logs
1 parent b181f85 commit ba2ae97

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

src/integrations/nativescripterrorhandlers.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ export class NativescriptErrorHandlers implements Integration {
9595
handlingFatal = false;
9696

9797
private globalHander(error: any, isFatal?: boolean) {
98-
console.log('globalHander', Object.keys(error));
9998
try {
10099
// We want to handle fatals, but only in production mode.
101100
const shouldHandleFatal = isFatal && !__DEV__;

src/integrations/screenshot.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export class Screenshot implements Integration {
3333
...(hint?.attachments || []),
3434
];
3535
}
36-
console.log('attachScreenshotToEventHint', screenshots, hint.attachments);
3736
return hint;
3837
}
3938

src/wrapper.android.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,6 @@ export namespace NATIVE {
469469
}
470470

471471
export function flush(timeout: number = 0) {
472-
console.log('flush', timeout);
473472
io.sentry.Sentry.flush(timeout);
474473
}
475474
let initialized = false;
@@ -536,7 +535,6 @@ export namespace NATIVE {
536535
Utils.android.getApplicationContext(),
537536
new io.sentry.Sentry.OptionsConfiguration({
538537
configure(config: io.sentry.android.core.SentryAndroidOptions) {
539-
console.log('config', config);
540538
// config.setLogger(new io.sentry.SystemOutLogger());
541539
try {
542540
if (options.dsn) {
@@ -1000,7 +998,6 @@ export namespace NATIVE {
1000998
export function captureScreenshot(fileName = 'screenshot') {
1001999
const activity = Application.android.foregroundActivity || Application.android.startActivity;
10021000
const raw = io.sentry.android.core.internal.util.ScreenshotUtils.takeScreenshot(activity, logger, buildInfo);
1003-
console.log('captureScreenshot',activity , raw, raw?.length);
10041001
if (raw !== null) {
10051002
return [{
10061003
'contentType': 'image/png',

0 commit comments

Comments
 (0)