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

Unified Diff: blimp/net/engine_connection_manager.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/net/engine_connection_manager.cc
diff --git a/blimp/net/engine_connection_manager.cc b/blimp/net/engine_connection_manager.cc
index 11ab02a85a5be2522aee67824ced7172000606ae..d4f16b1b092eda621b58880a4291a71ce20f9cad 100644
--- a/blimp/net/engine_connection_manager.cc
+++ b/blimp/net/engine_connection_manager.cc
@@ -54,7 +54,8 @@ void EngineConnectionManager::Connect() {
}
void EngineConnectionManager::OnConnectResult(int result) {
- CHECK_EQ(net::OK, result) << "Transport failure:" << transport_->GetName();
+ // Transport failure.
+ CHECK_EQ(net::OK, result);
connection_handler_->HandleConnection(transport_->MakeConnection());
Connect();
}

Powered by Google App Engine
This is Rietveld 408576698