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

Unified Diff: chrome/browser/sync/test/integration/quiesce_status_change_checker.cc

Issue 705033002: [content/browser/sync] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
Index: chrome/browser/sync/test/integration/quiesce_status_change_checker.cc
diff --git a/chrome/browser/sync/test/integration/quiesce_status_change_checker.cc b/chrome/browser/sync/test/integration/quiesce_status_change_checker.cc
index 9d2b316f2cf51ce0ea845d60ee04151b464e090b..026bfd27135ed706bb2e4b5b193abb7fc740fc5d 100644
--- a/chrome/browser/sync/test/integration/quiesce_status_change_checker.cc
+++ b/chrome/browser/sync/test/integration/quiesce_status_change_checker.cc
@@ -174,7 +174,7 @@ bool QuiesceStatusChangeChecker::IsExitConditionSatisfied() {
}
if (!(*it)->HasLatestProgressMarkers()) {
- VLOG(1) << "Not quiesced: Progress markers are old.";
+ DVLOG(1) << "Not quiesced: Progress markers are old.";
return false;
}
}
@@ -201,7 +201,7 @@ bool QuiesceStatusChangeChecker::IsExitConditionSatisfied() {
while (it2 != enabled_services.end()) {
// Return false if there is a progress marker mismatch.
if (!ProgressMarkersMatch(*it1, *it2)) {
- VLOG(1) << "Not quiesced: Progress marker mismatch.";
+ DVLOG(1) << "Not quiesced: Progress marker mismatch.";
return false;
}
it1++;

Powered by Google App Engine
This is Rietveld 408576698