summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2012-02-27 16:31:45 +0100
committerByron Jones <bjones@mozilla.com>2012-02-27 16:31:45 +0100
commit4d9e3d0c87ff6a118e94952b1c9ff475d2f023fc (patch)
tree668720bef3f039bc6e685b4dd29e78fc6de27de3 /Bugzilla/DB.pm
parentcc48d74d241b98157c80c666c3402b73be6157d1 (diff)
downloadbugzilla-4d9e3d0c87ff6a118e94952b1c9ff475d2f023fc.tar.gz
bugzilla-4d9e3d0c87ff6a118e94952b1c9ff475d2f023fc.tar.xz
Bug 698345: report errors and warnings to arecibo
Diffstat (limited to 'Bugzilla/DB.pm')
-rw-r--r--Bugzilla/DB.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm
index 0c841632f..2f708d065 100644
--- a/Bugzilla/DB.pm
+++ b/Bugzilla/DB.pm
@@ -159,7 +159,7 @@ sub _handle_error {
# Cut down the error string to a reasonable size
$_[0] = substr($_[0], 0, 2000) . ' ... ' . substr($_[0], -2000)
if length($_[0]) > 4000;
- $_[0] = Carp::longmess($_[0]);
+ # BMO: stracktrace disabled: $_[0] = Carp::longmess($_[0]);
return 0; # Now let DBI handle raising the error
}