Skip to content

Commit e06a1d6

Browse files
committed
Only capture message
1 parent b7fb0b6 commit e06a1d6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

1.bootstrap.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,12 @@ document.getElementById('convert-button').addEventListener('click', function ()
3838
if (ast.startsWith('Error')) {
3939
output_text_area.value = ast;
4040
} else {
41-
console.log(ast);
4241
output_text_area.value = (new Converter(JSON.parse(ast)[0].Query)).run();
4342
}
4443
} catch (e) {
4544
output_text_area.value = e;
4645
Sentry.captureMessage(input);
47-
Sentry.captureException(e);
46+
4847
throw e;
4948
}
5049
});

0 commit comments

Comments
 (0)