mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-03-01 11:12:59 +00:00
Add SEVERITY_CRITICAL to logging, that would help to suppress logs from the fuzz target.
Follow-up CL will be https://chromium-review.googlesource.com/c/chromium/src/+/1073395 Bug: 846721 Change-Id: Ie9e6dc5c5ef6b035c414fbdc4f711f995b52f4d7 Reviewed-on: https://chromium-review.googlesource.com/1073394 Reviewed-by: Will Harris <wfh@chromium.org>
This commit is contained in:
@@ -69,6 +69,9 @@ LogStream::LogStream(std::ostream &stream, Severity severity,
|
||||
case SEVERITY_ERROR:
|
||||
severity_string = "ERROR";
|
||||
break;
|
||||
case SEVERITY_CRITICAL:
|
||||
severity_string = "CRITICAL";
|
||||
break;
|
||||
}
|
||||
|
||||
stream_ << time_string << ": " << PathnameStripper::File(file) << ":" <<
|
||||
|
||||
Reference in New Issue
Block a user