Bug 1596210 - Prevent breakpad from spamming the log with error messages r=KrisWright

Setting breakpad minimum log severity level to CRITICAL should be enough to
quiet it completely since there are no statements in the code using it, the
"highest" I could find all use the ERROR level.

Differential Revision: https://phabricator.services.mozilla.com/D70115

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Gabriele Svelto 2020-04-08 20:28:14 +00:00
parent 8dfda8ef7c
commit 969e685d94

View File

@ -54,7 +54,7 @@ UNIFIED_SOURCES += [
'tokenize.cc',
]
DEFINES['BPLOG_MINIMUM_SEVERITY'] = 'SEVERITY_ERROR'
DEFINES['BPLOG_MINIMUM_SEVERITY'] = 'SEVERITY_CRITICAL'
Library('breakpad_processor')