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

Unified Diff: net/quic/crypto/quic_crypto_server_config.cc

Issue 83123006: Conver DLOG(INFO) to DVLOG(1) in QUIC code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix new messages Created 7 years, 1 month 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
« no previous file with comments | « net/quic/crypto/proof_verifier_chromium.cc ('k') | net/quic/quic_client_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/quic_crypto_server_config.cc
diff --git a/net/quic/crypto/quic_crypto_server_config.cc b/net/quic/crypto/quic_crypto_server_config.cc
index 1822ae417aec8bd3bfda1364314a12bf3a048d4d..30abe5abe0de302cd68525de11e0855533ee2256 100644
--- a/net/quic/crypto/quic_crypto_server_config.cc
+++ b/net/quic/crypto/quic_crypto_server_config.cc
@@ -131,7 +131,7 @@ class VerifyNonceIsValidAndUniqueCallback
protected:
virtual void RunImpl(bool nonce_is_valid_and_unique) OVERRIDE {
- DLOG(INFO) << "Using client nonce, unique: " << nonce_is_valid_and_unique;
+ DVLOG(1) << "Using client nonce, unique: " << nonce_is_valid_and_unique;
result_->info.unique = nonce_is_valid_and_unique;
done_cb_->Run(result_);
}
@@ -796,14 +796,14 @@ void QuicCryptoServerConfig::EvaluateClientHello(
info->client_nonce_well_formed = true;
} else {
// Invalid client nonce.
- DLOG(INFO) << "Invalid client nonce.";
+ DVLOG(1) << "Invalid client nonce.";
helper.ValidationComplete(QUIC_NO_ERROR, "");
return;
}
if (!replay_protection_) {
info->unique = true;
- DLOG(INFO) << "No replay protection.";
+ DVLOG(1) << "No replay protection.";
helper.ValidationComplete(QUIC_NO_ERROR, "");
return;
}
@@ -812,7 +812,7 @@ void QuicCryptoServerConfig::EvaluateClientHello(
if (!info->server_nonce.empty()) {
// If the server nonce is present, use it establish uniqueness.
info->unique = ValidateServerNonce(info->server_nonce, info->now);
- DLOG(INFO) << "Using server nonce, unique: " << info->unique;
+ DVLOG(1) << "Using server nonce, unique: " << info->unique;
helper.ValidationComplete(QUIC_NO_ERROR, "");
return;
}
« no previous file with comments | « net/quic/crypto/proof_verifier_chromium.cc ('k') | net/quic/quic_client_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698