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

Unified Diff: mojo/edk/system/ports/node.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: mojo/edk/system/ports/node.cc
diff --git a/mojo/edk/system/ports/node.cc b/mojo/edk/system/ports/node.cc
index bdb267db658c0435cc6e5828b92cee88f4933803..bef2f61b61c29db71321cb51fc649c5ecc9c6b29 100644
--- a/mojo/edk/system/ports/node.cc
+++ b/mojo/edk/system/ports/node.cc
@@ -21,7 +21,8 @@ namespace ports {
namespace {
int DebugError(const char* message, int error_code) {
- CHECK(false) << "Oops: " << message;
+ // Oops.
+ CHECK(false);
return error_code;
}

Powered by Google App Engine
This is Rietveld 408576698