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

Unified Diff: chrome/test/live_sync/live_autofill_sync_test.h

Issue 3915004: Convert LOG(INFO) to VLOG(1) - chrome/test/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 2 months 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 | « no previous file | chrome/test/live_sync/live_sync_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/live_sync/live_autofill_sync_test.h
===================================================================
--- chrome/test/live_sync/live_autofill_sync_test.h (revision 63075)
+++ chrome/test/live_sync/live_autofill_sync_test.h (working copy)
@@ -271,20 +271,20 @@
for (size_t i = 0; i < profiles.size(); ++i) {
const AutoFillProfile* p = profiles[i];
if (!expected_profiles_map.count(p->Label())) {
- LOG(INFO) << "Label " << p->Label() << " not in expected";
+ VLOG(1) << "Label " << p->Label() << " not in expected";
return false;
}
AutoFillProfile* expected_profile = &expected_profiles_map[p->Label()];
expected_profile->set_unique_id(p->unique_id());
if (*expected_profile != *p) {
- LOG(INFO) << "Profile mismatch";
+ VLOG(1) << "Profile mismatch";
return false;
}
expected_profiles_map.erase(p->Label());
}
if (expected_profiles_map.size()) {
- LOG(INFO) << "Labels in expected but not supplied";
+ VLOG(1) << "Labels in expected but not supplied";
return false;
}
« no previous file with comments | « no previous file | chrome/test/live_sync/live_sync_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698