Index: net/http/http_server_properties.cc |
diff --git a/net/http/http_server_properties.cc b/net/http/http_server_properties.cc |
index c11b35fa74fb22c2b8c473ace9ef30a24c03d287..514ef4f94f2c0e1368217212cdc9cb4f79007926 100644 |
--- a/net/http/http_server_properties.cc |
+++ b/net/http/http_server_properties.cc |
@@ -105,8 +105,10 @@ |
} |
std::string AlternateProtocolInfo::ToString() const { |
- return base::StringPrintf("%d:%s p=%f", port, |
- AlternateProtocolToString(protocol), probability); |
+ return base::StringPrintf("%d:%s p=%f%s", port, |
+ AlternateProtocolToString(protocol), |
+ probability, |
+ is_broken ? " (broken)" : ""); |
} |
// static |