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

Unified Diff: blimp/client/core/session/assignment_source.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: blimp/client/core/session/assignment_source.cc
diff --git a/blimp/client/core/session/assignment_source.cc b/blimp/client/core/session/assignment_source.cc
index f1214416fecd9759333f081ad26ad5763843e993..1f9c0647a5273e390bbd18bc6352bb6517db8588 100644
--- a/blimp/client/core/session/assignment_source.cc
+++ b/blimp/client/core/session/assignment_source.cc
@@ -114,8 +114,8 @@ Assignment GetAssignmentFromCommandLine() {
const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess();
assignment.client_auth_token = GetClientAuthToken(*cmd_line);
- CHECK(!assignment.client_auth_token.empty())
- << "No client auth token provided.";
+ // No client auth token provided.
+ CHECK(!assignment.client_auth_token.empty());
unsigned port_parsed = 0;
if (!base::StringToUint(

Powered by Google App Engine
This is Rietveld 408576698