Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1497)

Unified Diff: content/zygote/zygote_linux.cc

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/zygote/zygote_linux.cc
diff --git a/content/zygote/zygote_linux.cc b/content/zygote/zygote_linux.cc
index c196a7fc2fa159be1ccb9222b018c06764852a05..c25d7c9b4fd5a82c8dfca95c6410c26b23143e48 100644
--- a/content/zygote/zygote_linux.cc
+++ b/content/zygote/zygote_linux.cc
@@ -139,7 +139,8 @@ bool Zygote::ProcessRequests() {
if (!r)
_exit(RESULT_CODE_NORMAL_EXIT);
#else
- CHECK(r) << "Sending zygote magic failed";
+ // Sending zygote magic failed
+ CHECK(r);
#endif
}

Powered by Google App Engine
This is Rietveld 408576698