diff options
author | Matt Godbolt <matt@godbolt.org> | 2017-11-22 07:42:19 -0600 |
---|---|---|
committer | Matt Godbolt <matt@godbolt.org> | 2017-11-22 07:42:19 -0600 |
commit | d77789b42edec27014a0e3d901f7df4ecd260f8c (patch) | |
tree | b024823c03b1e9cf1068e2a08f0fbdf74aa0a87c /lib/compile-handler.js | |
parent | 36282012a1ac3781f96d74d205cd055aa279c41e (diff) | |
download | compiler-explorer-d77789b42edec27014a0e3d901f7df4ecd260f8c.tar.gz compiler-explorer-d77789b42edec27014a0e3d901f7df4ecd260f8c.zip |
Don't report user-facing errors to Raven (e.g. 'don't include /etc/passwd' type errors)
Diffstat (limited to 'lib/compile-handler.js')
-rw-r--r-- | lib/compile-handler.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/compile-handler.js b/lib/compile-handler.js index 60cc951e7..b9ab1a2b9 100644 --- a/lib/compile-handler.js +++ b/lib/compile-handler.js @@ -194,7 +194,6 @@ function CompileHandler(gccProps, compilerProps) { }, function (error) { logger.error("Error during compilation", error); - Raven.captureException(error, {req: req}); if (typeof(error) !== "string") { if (error.code) { if (typeof(error.stderr) === "string") { |